Skip to content

Commit

Permalink
solve errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BERNARD Jeremy committed Jul 5, 2024
2 parents ffd442d + 51c1bae commit 9ed09f5
Show file tree
Hide file tree
Showing 5 changed files with 5,026 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ class InputDataFormattingTest {
@Test
//enable it to test data extraction from the overpass api
void extractCreateFormatGISLayers() {

def directory = "/tmp/geoclimate"

File file = new File(directory)
Expand All @@ -288,17 +287,17 @@ class InputDataFormattingTest {
}
def h2GIS = H2GIS.open("${file.absolutePath + File.separator}osm_gislayers;AUTO_SERVER=TRUE".toString())

def zoneToExtract = "Vannes"
def zoneToExtract = "Nantes"

//def nominatim = org.orbisgis.geoclimate.osmtools.OSMTools.Utilities.getNominatimData(zoneToExtract)
// zoneToExtract = nominatim.bbox

//zoneToExtract = [62.2, 28.2, 62.4, 28.4]

//zoneToExtract =[45.784554,4.861279,45.796015,4.883981]
zoneToExtract =[47.0619, -1.8145005, 47.394558, -1.2849174]
Map extractData = OSM.InputDataLoading.extractAndCreateGISLayers(h2GIS, zoneToExtract)

String formatedPlaceName = zoneToExtract.join("-").trim().split("\\s*(,|\\s)\\s*").join("_");
String formatedPlaceName = zoneToExtract.join("_").trim().split("\\s*(,|\\s)\\s*").join("_");

if (!formatedPlaceName) {
formatedPlaceName = zoneToExtract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ class WorflowOSMTest extends WorkflowAbstractTest {
File dirFile = new File(directory)
dirFile.delete()
dirFile.mkdir()
def location = "Villeurbanne"
def location = "Nantes"
def nominatim = org.orbisgis.geoclimate.osmtools.OSMTools.Utilities.getNominatimData(location)
def grid_size = 250
location = nominatim.bbox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def extractRelationsAsPolygons(JdbcDataSource datasource, String osmTablesPrefix
datasource """
DROP TABLE IF EXISTS $relationsPolygonsInnerExploded;
CREATE TABLE $relationsPolygonsInnerExploded AS
SELECT the_geom AS the_geom, id_relation
SELECT st_makepolygon(the_geom) AS the_geom, id_relation
FROM st_explode('$relationsPolygonsInner')
WHERE ST_STARTPOINT(the_geom) = ST_ENDPOINT(the_geom)
AND ST_NPoints(the_geom)>=4;
Expand All @@ -544,10 +544,11 @@ def extractRelationsAsPolygons(JdbcDataSource datasource, String osmTablesPrefix
CREATE INDEX ON $relationsPolygonsInnerExploded(id_relation);
DROP TABLE IF EXISTS $relationsMpHoles;
CREATE TABLE $relationsMpHoles AS
SELECT ST_MAKEPOLYGON(ST_EXTERIORRING(a.the_geom), ST_ACCUM(b.the_geom)) AS the_geom, a.ID_RELATION
SELECT ST_MAKEPOLYGON(ST_EXTERIORRING(a.the_geom), ST_ToMultiLine(ST_ACCUM(b.the_geom))) AS the_geom, a.ID_RELATION
FROM $relationsPolygonsOuterExploded AS a
LEFT JOIN $relationsPolygonsInnerExploded AS b
ON( a.ID_RELATION=b.ID_RELATION)
ON( a.ID_RELATION=b.ID_RELATION and a.the_geom && b.the_geom
AND st_intersects(a.the_geom, st_pointonsurface(b.the_geom)))
GROUP BY a.the_geom, a.id_relation;
CREATE INDEX ON $relationsMpHoles(id_relation);
""".toString()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -840,5 +840,16 @@ class TransformTest extends AbstractOSMToolsTest {
h2GIS.save(lines, "/tmp/building.fgb")
}


@Test
void buildGISLayersTest2() {
def prefix = "OSM_WATER"
assertTrue OSMTools.Loader.load(ds, prefix,
new File(this.class.getResource("water.osm").toURI()).getAbsolutePath())
//Create building layer
def tags = ["natural":"water"]
String outputTableName = OSMTools.Transform.toPolygons(ds, prefix, 4326, tags)
def res = ds.firstRow("select count(*) as count, sum(ST_NumInteriorRings(the_geom)) as nb_holes from $outputTableName")
assertEquals(7, res.count)
assertEquals(3, res.nb_holes)
}
}
Loading

0 comments on commit 9ed09f5

Please sign in to comment.