use of org.n52.shetland.ogc.sos.response.GetObservationResponse in project arctic-sea by 52North.
the class AqdEncoder method getFeatureCollection.
private FeatureCollection getFeatureCollection(GetObservationResponse response) throws EncodingException {
FeatureCollection featureCollection = new FeatureCollection();
featureCollection.setGmlId("fc_" + JavaHelper.generateID(new DateTime().toString()));
return featureCollection;
}
use of org.n52.shetland.ogc.sos.response.GetObservationResponse in project arctic-sea by 52North.
the class AqdGetObservationResponseEncoder method createFeatureCollection.
private FeatureCollection createFeatureCollection(GetObservationResponse response) throws EncodingException {
FeatureCollection featureCollection = new FeatureCollection();
featureCollection.setGmlId("fc_" + JavaHelper.generateID(new DateTime().toString()));
return featureCollection;
}
Aggregations