use of org.geosdi.geoplatform.connector.geoserver.model.bbox.GPGeoserverNativeBoundingBox in project geo-platform by geosdi.
the class GeoserverConnectorLayersTest method o_publishDBLayer.
@Ignore
@Test
public void o_publishDBLayer() throws Exception {
GeoserverCreateFeatureTypeRequest createFeatureTypeRequest = this.geoserverConnectorStore.createFeatureTypeRequest();
createFeatureTypeRequest.withWorkspace("sf").withStore("store_vito");
IGPGeoserverFeatureTypeInfo featureTypeBody = new GPGeoserverFeatureTypeInfo();
featureTypeBody.setNativeCRS("GEOGCS["WGS 84", \n" + " DATUM["World Geodetic System 1984", \n" + " SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], \n" + " AUTHORITY["EPSG","6326"]], \n" + " PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], \n" + " UNIT["degree", 0.017453292519943295], \n" + " AXIS["Geodetic longitude", EAST], \n" + " AXIS["Geodetic latitude", NORTH], \n" + " AUTHORITY["EPSG","4326"]]");
featureTypeBody.setSrs("EPSG:4326");
featureTypeBody.setEnabled(TRUE);
featureTypeBody.setTitle("layer_test");
featureTypeBody.setName("test");
GPGeoserverNativeBoundingBox nativeBoundingBox = new GPGeoserverNativeBoundingBox();
nativeBoundingBox.setMinx(-74.0118315772888);
nativeBoundingBox.setMaxx(-74.00153046439813);
nativeBoundingBox.setMiny(40.70754683896324);
nativeBoundingBox.setMaxy(40.719885123828675);
nativeBoundingBox.setCrs("EPSG:4326");
featureTypeBody.setNativeBoundingBox(nativeBoundingBox);
GPGeoserverLatLonBoundingBox latLonBoundingBox = new GPGeoserverLatLonBoundingBox();
latLonBoundingBox.setMinx(-74.0118315772888);
latLonBoundingBox.setMaxx(-74.00857344353275);
latLonBoundingBox.setMiny(40.70754683896324);
latLonBoundingBox.setMaxy(40.711945649065406);
latLonBoundingBox.setCrs("EPSG:4326");
featureTypeBody.setLatLonBoundingBox(latLonBoundingBox);
IGPFeatureTypeAttribute featureTypeAttribute = new GPFeatureTypeAttribute();
featureTypeAttribute.setName("the_geom");
featureTypeAttribute.setBinding("org.locationtech.jts.geom.Point");
featureTypeAttribute.setNillable(TRUE);
featureTypeAttribute.setMinOccurs(0);
featureTypeAttribute.setMinOccurs(1);
IGPFeatureTypeAttributes featureTypeAttributes = new GPFeatureTypeAttributes();
featureTypeAttributes.setValues(asList(featureTypeAttribute));
featureTypeBody.setAttributes(featureTypeAttributes);
createFeatureTypeRequest.withFeatureTypeBody(featureTypeBody);
logger.info("################{}\n", createFeatureTypeRequest.getResponse());
}
use of org.geosdi.geoplatform.connector.geoserver.model.bbox.GPGeoserverNativeBoundingBox in project geo-platform by geosdi.
the class GPGeoserverNativeBoundingBoxJacksonTest method c_marshallGPGeoserverNativeBoundingBoxAsXmlStringTest.
@Test
public void c_marshallGPGeoserverNativeBoundingBoxAsXmlStringTest() throws Exception {
GPGeoserverNativeBoundingBox nativeBoundingBox = toNativeBoundingBox();
nativeBoundingBox.setCrs("EPSG:32632");
logger.info("@@@@@@@@@@@@@@@@GP_GEOSERVER_NATIVE_BOUNDING_BOX : \n{}\n", JACKSON_JAXB_XML_SUPPORT.getDefaultMapper().writeValueAsString(nativeBoundingBox));
}
use of org.geosdi.geoplatform.connector.geoserver.model.bbox.GPGeoserverNativeBoundingBox in project geo-platform by geosdi.
the class GPGeoserverNativeBoundingBoxJacksonTest method toNativeBoundingBox.
/**
* @param simpleCRS
* @return {@link GPGeoserverNativeBoundingBox}
*/
public static GPGeoserverNativeBoundingBox toNativeBoundingBox(boolean simpleCRS) {
GPGeoserverNativeBoundingBox nativeBoundingBox = new GPGeoserverNativeBoundingBox();
nativeBoundingBox.setMinx(589980.0);
nativeBoundingBox.setMaxx(609000.0);
nativeBoundingBox.setMiny(4913700.0);
nativeBoundingBox.setMaxy(4928010.0);
nativeBoundingBox.setCrs(simpleCRS ? "EPSG:32632" : toCrs());
return nativeBoundingBox;
}
use of org.geosdi.geoplatform.connector.geoserver.model.bbox.GPGeoserverNativeBoundingBox in project geo-platform by geosdi.
the class GPGeoserverNativeBoundingBoxJacksonTest method toNativeBoundingBox.
/**
* @return {@link GPGeoserverNativeBoundingBox}
*/
public static GPGeoserverNativeBoundingBox toNativeBoundingBox() {
GPGeoserverNativeBoundingBox nativeBoundingBox = new GPGeoserverNativeBoundingBox();
nativeBoundingBox.setMinx(589980.0);
nativeBoundingBox.setMaxx(609000.0);
nativeBoundingBox.setMiny(4913700.0);
nativeBoundingBox.setMaxy(4928010.0);
nativeBoundingBox.setCrs(toCrs());
return nativeBoundingBox;
}
use of org.geosdi.geoplatform.connector.geoserver.model.bbox.GPGeoserverNativeBoundingBox in project geo-platform by geosdi.
the class GPGeoserverNativeBoundingBoxJacksonTest method g_marshallGPGeoserverNativeBoundingBoxAsJsonStringTest.
@Test
public void g_marshallGPGeoserverNativeBoundingBoxAsJsonStringTest() throws Exception {
GPGeoserverNativeBoundingBox nativeBoundingBox = toNativeBoundingBox();
nativeBoundingBox.setCrs("EPSG:32632");
logger.info("@@@@@@@@@@@@@@@@@GP_GEOSERVER_NATIVE_BOUNDING_BOX : \n{}\n", jacksonSupport.getDefaultMapper().writeValueAsString(nativeBoundingBox));
}
Aggregations