geosolutions-it / evo-odas

Code Repository for the EVO-ODAS
https://waffle.io/geosolutions-it/evo-odas
MIT License
31 stars 15 forks source link

OSDD implementation does not declare supported geometry types #258

Closed aaime closed 6 years ago

aaime commented 6 years ago

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>