Added parser for srs

This commit is contained in:
Federico C. Guizzardi 2016-03-03 15:06:05 +01:00
parent bd6bab3ddb
commit f0a41b8d68

View File

@ -136,7 +136,12 @@ public class RESTResource {
RESTBoundingBox bbox = this.getLatLonBoundingBox();
return bbox.getCRS();
}
public String getSrs(){
return rootElem.getChildText("srs");
}
public double getMinX() {
return this.getLatLonBoundingBox().getMinX();
}