use of org.geotoolkit.swe.xml.v100.VectorType in project arctic-sea by 52North.
the class SweCommonEncoderv101 method createVector.
private VectorType createVector(List<? extends SweCoordinate<?>> coordinates) throws EncodingException {
VectorType vectorType = VectorType.Factory.newInstance(getXmlOptions());
vectorType.setCoordinateArray(createCoordinates(coordinates));
return vectorType;
}
Aggregations