geosolutions-it/evo-odas

OSDD implementation does not declare supported geometry types

Closed this issue · 0 comments

aaime commented

This is mandatory in CEOS and in our spec too, but the implementation does not perform the declaration in the OSDD. Should be something like:

<param:Parameter name="geometry" value=”{geo:geometry}”>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/LINESTRING”
title="This service accepts WKT LineStrings"/>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/POINT”
title="This service accepts WKT Point"/>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/POLYGON”
title="This service accepts WKT Polygons"/>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/MULTILINESTRING”
title="This service accepts WKT Multi-LineStrings"/>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/MULTIPOINT”
title="This service accepts WKT Multi-Point"/>
<atom:link rel="profile" href=”http://www.opengis.net/wkt/MULTIPOLYGON”
title="This service accepts WKT Multi-Polygons"/>
</param:Parameter>