use of org.locationtech.jts.io.gml2.GMLWriter in project OpenTripPlanner by opentripplanner.
the class GeometryAdapter method marshal.
public String marshal(Geometry val) throws Exception {
GMLWriter writer = new GMLWriter();
writer.setNamespace(false);
return writer.write(val);
}
Aggregations