Changes between Initial Version and Version 1 of Ticket #501


Ignore:
Timestamp:
Oct 25, 2013, 4:50:55 PM (11 years ago)
Author:
Piero Campalani
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #501 – Description

    initial v1  
    11Currently the handling of WC*S requests on Multipoint coverages is working for fixed 3D XYZ CRSs.
    22Despite 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
     4For instance, `petascope.wcps.server.core.XmlQuery` :
     5{{{
     6result = 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
     14xmin = trimParams[0].split(":")[0];
     15ymin = trimParams[1].split(":")[0];
     16zmin = trimParams[2].split(":")[0];
     17
     18...
     19}}}
     20