Changes between Initial Version and Version 1 of Ticket #501
- Timestamp:
- Oct 25, 2013, 4:50:55 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #501 – Description
initial v1 1 1 Currently the handling of WC*S requests on Multipoint coverages is working for fixed 3D XYZ CRSs. 2 2 Despite this maybe covers the majority of cases for Multipoint datasets, Petascope should deploy PostGIS queries and format the GML output according to the native CRS of the Multipoint coverage, including time series of multipoint. 3 4 For instance, `petascope.wcps.server.core.XmlQuery` : 5 {{{ 6 result = WcpsConstants.MSG_SELECT + " value, St_X(coordinate) AS x, " 7 + "St_Y(coordinate) AS y, St_Z(coordinate) AS z " + 8 WcpsConstants.MSG_FROM + " ps9_coverage c, ps9_multipoint_domain_set AS d, ps9_multipoint_range_set AS r " + 9 WcpsConstants.MSG_WHERE + 10 " c.name='" + coverageName + "' AND c.id = d.coverage_id AND d.id = r.point_id " ; 11 12 ... 13 14 xmin = trimParams[0].split(":")[0]; 15 ymin = trimParams[1].split(":")[0]; 16 zmin = trimParams[2].split(":")[0]; 17 18 ... 19 }}} 20