|
Using the (E)CQL _expression_: someDate during 2006-11-30T01:30:00Z/2007-11-30T01:30:00Z
the XML representation becomes:
<fes:Filter xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:gml="http://www.opengis.net/gml/3.2"> <fes:During> <fes:ValueReference>someDate</fes:ValueReference> <fes:Literal>Period: begin:Instant: position:Position: position:Thu Nov 30 02:30:00 CET 2006 end:Instant: position:Position: position:Fri Nov 30 02:30:00 CET 2007 </fes:Literal> </fes:During> </fes:Filter>
Instead of a gml:TimePeriod element there is a fes:Literal (containing the correct information).
In fact, also encoding an After filter (and others) is incorrect because also there I would expect gml:TimePeriod and not fes:Literal
|