Description
Representation of a temporal primitive in a metadata objects uses GML. However the namespace of those objects depends on the GML version:
- Before GML 3.2.1, it was http://www.opengis.net/gml
- Starting with GML 3.2.1, it is http://www.opengis.net/gml/3.2
Apache SIS defaults to the latest supported version of each standard. However it does not work with other software which expect GML 3.2. The namespace was supposed to be controllable as below:
Result out = ...; // Where to write the XML (Writer, OutputStream, etc.). Map<String,Object> properties = new HashMap<>(); properties.put(XML.GML_VERSION, "3.2"); XML.marshal(metadata, out, properties);
However the above does not change the namespace as expected.
Attachments
Attachments
Issue Links
- relates to
-
SIS-160 Need XSLT between GML 3.1 and 3.2
- Open