use of org.geosdi.geoplatform.connector.geoserver.model.featuretypes.GPGeoserverFeatureTypeInfo in project geo-platform by geosdi.
the class GeoserverConnectorLayersTest method m_getFeatureType.
@Test
public void m_getFeatureType() throws Exception {
GeoserverLoadWorkspaceLayerRequest geoserverLoadWorkspaceLayerRequest = this.geoserverConnectorStore.loadWorkspaceLayerRequest().withQuietOnNotFound(FALSE).withLayerName("poi").withWorkspaceName("tiger");
Boolean result = geoserverLoadWorkspaceLayerRequest.exist();
logger.info("################{}\n", result);
GeoserverLayer geoserverLayer = geoserverLoadWorkspaceLayerRequest.getResponse();
logger.info("################{}\n", geoserverLayer);
GPGeoserverFeatureTypeInfo gpGeoserverFeatureTypeInfo = this.geoserverConnectorStore.loadFeatureTypeWithUrl().withUrl(geoserverLayer.getLayerResource().getHref()).getResponse();
RESTLayer restLayer = this.restReader.getLayer("tiger", "poi");
RESTFeatureType featureType = this.restReader.getFeatureType(restLayer);
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeBoundingBox().getMaxx() == featureType.getNativeBoundingBox().getMaxX());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeBoundingBox().getMaxy() == featureType.getNativeBoundingBox().getMaxY());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeBoundingBox().getMinx() == featureType.getNativeBoundingBox().getMinX());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeBoundingBox().getMiny() == featureType.getNativeBoundingBox().getMinY());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeBoundingBox().getCrs().equals(featureType.getNativeBoundingBox().getCRS()));
assertTrue("#################", gpGeoserverFeatureTypeInfo.getLatLonBoundingBox().getMaxx() == featureType.getLatLonBoundingBox().getMaxX());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getLatLonBoundingBox().getMaxy() == featureType.getLatLonBoundingBox().getMaxY());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getLatLonBoundingBox().getMinx() == featureType.getLatLonBoundingBox().getMinX());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getLatLonBoundingBox().getMiny() == featureType.getLatLonBoundingBox().getMinY());
assertTrue("#################", gpGeoserverFeatureTypeInfo.getLatLonBoundingBox().getCrs().equals(featureType.getLatLonBoundingBox().getCRS()));
assertTrue("#################", gpGeoserverFeatureTypeInfo.getNativeName().equals(featureType.getNativeName()));
stream(gpGeoserverFeatureTypeInfo.getAttributes().getValues().spliterator(), FALSE).forEach(c -> c.getName());
stream(featureType.getAttributes().spliterator(), FALSE).forEach(c -> System.out.println(c.getName()));
}
use of org.geosdi.geoplatform.connector.geoserver.model.featuretypes.GPGeoserverFeatureTypeInfo 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.featuretypes.GPGeoserverFeatureTypeInfo in project geo-platform by geosdi.
the class GPGeoserverFeatureTypeInfoJacksonTest method d_unmarshallGPGeoserverFeatureTypeInfoFromJsonFileTest.
@Test
public void d_unmarshallGPGeoserverFeatureTypeInfoFromJsonFileTest() throws Exception {
GPGeoserverFeatureTypeInfo featureTypeInfo = jacksonSupport.getDefaultMapper().readValue(new File(of(new File(".").getCanonicalPath(), "src", "test", "resources", "FeatureTypeInfo").collect(joining(separator, "", ".json"))), GPGeoserverFeatureTypeInfo.class);
logger.info("#####################GP_GEOSERVER_FEATURE_TYPE_INFO : {}\n", featureTypeInfo);
}
use of org.geosdi.geoplatform.connector.geoserver.model.featuretypes.GPGeoserverFeatureTypeInfo in project geo-platform by geosdi.
the class GPGeoserverFeatureTypeInfoJacksonTest method a_unmarshallGPGeoserverFeatureTypeInfoFromXmlFileTest.
@Test
public void a_unmarshallGPGeoserverFeatureTypeInfoFromXmlFileTest() throws Exception {
GPGeoserverFeatureTypeInfo featureTypeInfo = JACKSON_JAXB_XML_SUPPORT.getDefaultMapper().readValue(new File(of(new File(".").getCanonicalPath(), "src", "test", "resources", "FeatureTypeInfo").collect(joining(separator, "", ".xml"))), GPGeoserverFeatureTypeInfo.class);
logger.info("@@@@@@@@@@@@@@@@@@@@@@@GP_GEOSERVER_FEATURE_TYPE_INFO : {}\n", featureTypeInfo);
}
use of org.geosdi.geoplatform.connector.geoserver.model.featuretypes.GPGeoserverFeatureTypeInfo in project geo-platform by geosdi.
the class GPGeoserverFeatureTypeInfoJacksonTest method e_unmarshallGPGeoserverFeatureTypeInfoFromXmlFileTest.
@Test
public void e_unmarshallGPGeoserverFeatureTypeInfoFromXmlFileTest() throws Exception {
GPGeoserverFeatureTypeInfo featureTypeInfo = JACKSON_JAXB_XML_SUPPORT.getDefaultMapper().readValue(new File(of(new File(".").getCanonicalPath(), "src", "test", "resources", "FeatureTypeInfo1").collect(joining(separator, "", ".xml"))), GPGeoserverFeatureTypeInfo.class);
logger.info("@@@@@@@@@@@@@@@@@@@@@@@GP_GEOSERVER_FEATURE_TYPE_INFO : {}\n", featureTypeInfo);
}
Aggregations