Changeset 491 for trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env
- Timestamp:
- Jun 27, 2014, 1:43:56 AM (11 years ago)
- Location:
- trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env
- Files:
-
- 9 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Boundary.zcfg
r106 r491 1 1 [Boundary] 2 2 Title = Compute boundary. 3 Abstract = A new geometry object is created and returned containing the boundary of the geometry on which the method is invoked.3 Abstract = This service shall return a feature callection representing the combinatorial boundary of each geometry in the InputPolygon feature collection. 4 4 processVersion = 1 5 5 storeSupported = true -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Buffer.zcfg
r106 r491 1 1 [Buffer] 2 2 Title = Create a buffer around a polygon. 3 Abstract = Create a buffer around a single polygon. Accepts the polygon as GML and provides GML output for the buffered feature.3 Abstract = This service shall return a feature collection representing the buffer of geometry InputPolygon at distance BufferDistance. The buffer of a geometry at distance d is the Polygon or MultiPolygon which contains all points within a distance d of the geometry. 4 4 Profile = urn:ogc:wps:1.0.0:buffer 5 5 processVersion = 2 … … 63 63 </Default> 64 64 <Supported> 65 mimeType = text/xml66 encoding = base6467 schema = http://fooa/gml/3.1.0/polygon.xsd68 extension = xml69 </Supported>70 <Supported>71 65 mimeType = application/json 72 66 encoding = UTF-8 -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Centroid.zcfg
r106 r491 1 1 [Centroid] 2 2 Title = Get the centroid of a polygon. 3 Abstract = Compute the geometry centroid.3 Abstract = This service shall return the point that is the geometric centre of gravity of the geometry InputPolygon. 4 4 Profile = urn:ogc:wps:1.0.0:centroid 5 5 processVersion = 2 -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/ConvexHull.zcfg
r106 r491 1 1 [ConvexHull] 2 2 Title = Compute convex hull. 3 Abstract = A new geometry object is created and returned containing the convex hull of the geometry on which the method is invoked.3 Abstract = This service shall return a feature collection that represents the convex hull of geometry InputPolygon. The convex hull is the smallest convex polygon that contains all points of the geometry. The convex Hull for a geometry of encoding data type Point is the point itself 4 4 processVersion = 1 5 5 storeSupported = true -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Difference.zcfg
r106 r491 1 1 [Difference] 2 2 Title = Compute difference. . 3 Abstract = Generates a new geometry which is the region of this geometry with the region of the other geometry removed.3 Abstract = This function SHALL return a bag of geometry values representing the closure of the set difference between the two geometries InputEntity1 and InputEntity2. The difference is the set of all points which lie on InputEntity1 but not on InputEntity2. 4 4 Profile = urn:ogc:wps:1.0.0:difference 5 5 processVersion = 2 -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Intersection.zcfg
r106 r491 1 1 [Intersection] 2 2 Title = Compute intersection. 3 Abstract = Generates a new geometry which is the region of intersection of the two geometries operated on.3 Abstract = This function SHALL return a bag of geometry values representing the Point set intersection of geometry InputEntity1 and geometry InputEntity2. 4 4 Profile = urn:ogc:wps:1.0.0:union 5 5 processVersion = 2 -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/SymDifference.zcfg
r106 r491 1 1 [SymDifference] 2 2 Title = Compute symmetric difference. 3 Abstract = Generates a new geometry which is the symmetric difference of this geometry and the other geometry.3 Abstract = This service shall return a feature collection representing the closure of the symmetric difference of two Geometries. The symmetric difference is the set of points which lie on either InputEntity1 or InputEntity2 but not in both. 4 4 Profile = urn:ogc:wps:1.0.0:symmetricdifference 5 5 processVersion = 2 -
trunk/zoo-project/zoo-services/ogr/base-vect-ops/cgi-env/Union.zcfg
r106 r491 1 1 [Union] 2 2 Title = Compute union. 3 Abstract = Generates a new geometry which is the region of union of the two geometries operated on.4 Profile = urn:ogc:wps:1.0.0:union3 Abstract = This service shall return a bag of geometry values representing a Point set union of geometry InputEntity1 with geometry InputEntity2. 4 profile = urn:ogc:wps:1.0.0:union 5 5 processVersion = 2 6 6 storeSupported = true
Note: See TracChangeset
for help on using the changeset viewer.