Changeset 9 for trunk/zoo-services/ogr/base-vect-ops/cgi-env
- Timestamp:
- Sep 14, 2010, 2:04:55 PM (15 years ago)
- Location:
- trunk/zoo-services/ogr/base-vect-ops/cgi-env
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Boundary.zcfg
r1 r9 8 8 serviceType = C 9 9 <MetaData> 10 Test= Demo10 title = Demo 11 11 </MetaData> 12 12 <DataInputs> 13 13 [InputPolygon] 14 Title = Polygon to be buffered14 Title = Polygon to compute boundary 15 15 Abstract = URI to a set of GML that describes the polygon. 16 16 minOccurs = 1 17 17 maxOccurs = 1 18 18 <MetaData lang="en"> 19 Test= Mon test19 title = Mon test 20 20 </MetaData> 21 21 <ComplexData> 22 22 <Default> 23 mimeType = text/ js23 mimeType = text/xml 24 24 encoding = UTF-8 25 schema = http://fooa/gml/3.1.0/polygon.xsd 25 26 </Default> 26 27 <Supported> … … 30 31 </Supported> 31 32 </ComplexData> 32 [BufferDistance]33 Title = Buffer Distance34 Abstract = Distance to be used to calculate buffer.35 minOccurs = 036 maxOccurs = 137 <LiteralData>38 DataType = float39 <Default>40 uom = meters41 </Default>42 <Supported>43 uom = feet44 </Supported>45 </LiteralData>46 33 </DataInputs> 47 34 <DataOutputs> 48 [ Boundary]35 [Result] 49 36 Title = The geometry created 50 37 Abstract = The geometry containing the boundary of the geometry on which the method is invoked. 51 38 <MetaData lang="en"> 52 Test1= Mon test39 title = Mon test 53 40 </MetaData> 54 41 <ComplexData> 55 42 <Default> 56 mimeType = text/xml43 mimeType = application/json 57 44 encoding = UTF-8 58 schema = http://fooa/gml/3.1.0/polygon.xsd45 extension = js 59 46 asReference = true 60 47 </Default> 61 48 <Supported> 62 49 mimeType = text/xml 50 encoding = UTF-8 51 schema = http://fooa/gml/3.1.0/polygon.xsd 52 extension = xml 53 </Supported> 54 <Supported> 55 mimeType = text/xml 63 56 encoding = base64 64 57 schema = http://fooa/gml/3.1.0/polygon.xsd 65 </Supported> 66 <Supported> 67 mimeType = text/js 68 encoding = UTF-8 58 extension = xml 69 59 </Supported> 70 60 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Buffer.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData lang="en"> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 49 49 </DataInputs> 50 50 <DataOutputs> 51 [ BufferedPolygon]51 [Result] 52 52 Title = Buffered Polygon 53 53 Abstract = GML stream describing the buffered polygon feature. 54 54 <MetaData lang="en"> 55 Test1= Mon test55 title = Mon test 56 56 </MetaData> 57 57 <ComplexData> 58 58 <Default> 59 mimeType = text/xml59 mimeType = application/json 60 60 encoding = UTF-8 61 schema = http://fooa/gml/3.1.0/polygon.xsd61 extension = js 62 62 asReference = true 63 63 </Default> … … 66 66 encoding = base64 67 67 schema = http://fooa/gml/3.1.0/polygon.xsd 68 extension = xml 68 69 </Supported> 69 70 <Supported> 70 mimeType = application/json71 mimeType = text/xml 71 72 encoding = UTF-8 73 schema = http://fooa/gml/3.1.0/polygon.xsd 74 extension = xml 72 75 </Supported> 73 76 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Centroid.zcfg
r1 r9 1 1 [Centroid] 2 2 Title = Get the centroid of a polygon. 3 Abstract = C reate a buffer around a single polygon. Accepts the polygon as GML and provides GML output for the buffered feature.3 Abstract = Compute the geometry centroid. 4 4 Profile = urn:ogc:wps:1.0.0:centroid 5 5 processVersion = 2 … … 9 9 serviceType = C 10 10 <MetaData lang="en"> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> 14 14 [InputPolygon] 15 Title = Polygon to be buffered16 Abstract = URI to a set of GML that describes the polygon.15 Title = Polygon to get the centroid 16 Abstract = The centroid which is not necessarily within the geometry. 17 17 minOccurs = 1 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 34 34 </DataInputs> 35 35 <DataOutputs> 36 [ Centroid]36 [Result] 37 37 Title = The Centroid 38 38 Abstract = JSON String / GML Entity of the centroid 39 39 <MetaData lang="en"> 40 Test1= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> 43 43 <Default> 44 mimeType = text/js44 mimeType = application/json 45 45 encoding = UTF-8 46 extension = js 47 asReference = true 46 48 </Default> 47 <Supported>48 mimeType = text/xml49 encoding = base6450 schema = http://fooa/gml/3.1.0/point.xsd51 </Supported>52 49 <Supported> 53 50 mimeType = text/xml 54 51 encoding = UTF-8 55 52 schema = http://fooa/gml/3.1.0/point.xsd 56 asReference = true53 extension = xml 57 54 </Supported> 58 55 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/ConvexHull.zcfg
r1 r9 8 8 serviceType = C 9 9 <MetaData lang="en"> 10 Test= Demo10 title = Demo 11 11 </MetaData> 12 12 <DataInputs> 13 13 [InputPolygon] 14 Title = Polygon to compute are14 Title = Polygon to compute convexhull 15 15 Abstract = URI to a set of GML that describes the polygon. 16 16 minOccurs = 1 17 17 maxOccurs = 1 18 18 <MetaData lang="en"> 19 Test1= Mon test19 title = Mon test 20 20 </MetaData> 21 21 <ComplexData> … … 37 37 Abstract = The convex hull of the geometry 38 38 <MetaData lang="en"> 39 Test1= Mon test39 title = Mon test 40 40 </MetaData> 41 41 <ComplexData> 42 42 <Default> 43 mimeType = application/json 44 encoding = UTF-8 45 extension = js 46 asReference = true 47 </Default> 48 <Supported> 43 49 mimeType = text/xml 44 50 encoding = UTF-8 45 51 schema = http://fooa/gml/3.1.0/polygon.xsd 46 </Default> 47 <Supported> 48 mimeType = text/xml 49 encoding = base64 50 schema = http://fooa/gml/3.1.0/polygon.xsd 52 extension = xml 51 53 </Supported> 52 54 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Difference.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 38 38 maxOccurs = 1 39 39 <MetaData lang="en"> 40 Test= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> … … 54 54 </DataInputs> 55 55 <DataOutputs> 56 [ Distance]57 Title = The di stance between two geometries58 Abstract = The shortest distance between the two geometries.56 [Result] 57 Title = The difference between two geometries 58 Abstract = The difference between the two geometries. 59 59 <MetaData lang="en"> 60 Test1= Mon test60 title = Mon test 61 61 </MetaData> 62 62 <ComplexData> … … 64 64 mimeType = application/json 65 65 encoding = UTF-8 66 extension = js 66 67 </Default> 67 68 <Supported> … … 69 70 schema = http://fooa/gml/3.1.0/polygon.xsd 70 71 encoding = UTF-8 72 extension = xml 71 73 </Supported> 72 74 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Distance.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 38 38 maxOccurs = 1 39 39 <MetaData lang="en"> 40 Test= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> … … 58 58 Abstract = The shortest distance between the two geometries. 59 59 <MetaData lang="en"> 60 Test1= Mon test60 title = Mon test 61 61 </MetaData> 62 62 <LiteralData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/GetArea.zcfg
r1 r9 8 8 serviceType = C 9 9 <MetaData lang="en"> 10 Test= Demo10 title = Demo 11 11 </MetaData> 12 12 <DataInputs> … … 17 17 maxOccurs = 1 18 18 <MetaData lang="en"> 19 Test1= Mon test19 title = Mon test 20 20 </MetaData> 21 21 <ComplexData> … … 37 37 Abstract = The Computed Area Value 38 38 <MetaData lang="en"> 39 Test1= Mon test39 title = Mon test 40 40 </MetaData> 41 41 <LiteralData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Intersection.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 38 38 maxOccurs = 1 39 39 <MetaData lang="en"> 40 Test= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> … … 54 54 </DataInputs> 55 55 <DataOutputs> 56 [ Distance]57 Title = The distance between twogeometries58 Abstract = The shortest distance between the two geometries.56 [Result] 57 Title = Intersection of geometries 58 Abstract = A new geometry representing the intersection or NULL if there is no intersection or an error occurs. 59 59 <MetaData lang="en"> 60 Test1= Mon test60 title = Mon test 61 61 </MetaData> 62 62 <ComplexData> … … 64 64 mimeType = application/json 65 65 encoding = UTF-8 66 extension = js 66 67 </Default> 67 68 <Supported> … … 69 70 schema = http://fooa/gml/3.1.0/polygon.xsd 70 71 encoding = UTF-8 72 extension = xml 71 73 </Supported> 72 74 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/SymDifference.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 38 38 maxOccurs = 1 39 39 <MetaData lang="en"> 40 Test= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> … … 54 54 </DataInputs> 55 55 <DataOutputs> 56 [ Distance]57 Title = The distance between two geometries58 Abstract = The s hortest distance between the two geometries.56 [Result] 57 Title = The resulting geometry 58 Abstract = The symmetric difference of two geometries 59 59 <MetaData lang="en"> 60 Test1= Mon test60 title = Mon test 61 61 </MetaData> 62 62 <ComplexData> … … 64 64 mimeType = application/json 65 65 encoding = UTF-8 66 extension = js 66 67 </Default> 67 68 <Supported> … … 69 70 schema = http://fooa/gml/3.1.0/polygon.xsd 70 71 encoding = UTF-8 72 extension = xml 71 73 </Supported> 72 74 </ComplexData> -
trunk/zoo-services/ogr/base-vect-ops/cgi-env/Union.zcfg
r1 r9 9 9 serviceType = C 10 10 <MetaData> 11 Test= Demo11 title = Demo 12 12 </MetaData> 13 13 <DataInputs> … … 18 18 maxOccurs = 1 19 19 <MetaData lang="en"> 20 Test= Mon test20 title = Mon test 21 21 </MetaData> 22 22 <ComplexData> … … 38 38 maxOccurs = 1 39 39 <MetaData lang="en"> 40 Test= Mon test40 title = Mon test 41 41 </MetaData> 42 42 <ComplexData> … … 54 54 </DataInputs> 55 55 <DataOutputs> 56 [ Distance]57 Title = The distance betweentwo geometries58 Abstract = The shortest distance betweenthe two geometries.56 [Result] 57 Title = The union of two geometries 58 Abstract = The geometry representing the union of the two geometries. 59 59 <MetaData lang="en"> 60 Test1= Mon test60 title = Mon test 61 61 </MetaData> 62 62 <ComplexData> … … 64 64 mimeType = application/json 65 65 encoding = UTF-8 66 extension = js 66 67 </Default> 67 68 <Supported> … … 69 70 schema = http://fooa/gml/3.1.0/polygon.xsd 70 71 encoding = UTF-8 72 extension = xml 71 73 </Supported> 72 74 </ComplexData>
Note: See TracChangeset
for help on using the changeset viewer.