Commit 93cd13b4 authored by Eric Duminil's avatar Eric Duminil
Browse files

Script for Philip

parent e30a208c
......@@ -14,8 +14,9 @@ public class PrepareDataForMarieke
{
// Add Trees to GML files inside data/Marieke/...
public static void main(String[] whatever) throws Exception {
processGrombühl();
// processGrafenbühl();
processGrafenbühl3();
// processGrafenbühl3();
// processWholeRegion();
// processSmallBlocks();
// processStatusQuo();
......@@ -53,6 +54,22 @@ public class PrepareDataForMarieke
}
}
private static void processGrombühl() throws IOException, CityGMLContextException, CityGMLReadException,
InterruptedException, CityGMLWriteException, JAXBException, ParseException {
File folder = new File("data/Philip/Test");
String gml = "Polygon 1.gml";
File[] shapefiles = folder.listFiles((dir, name) -> name.endsWith(".shp"));
for (File shapefile : shapefiles) {
System.err.println(">>> " + shapefile);
String extension = shapefile.getName().replaceAll("\\.shp", "");
String[] args = new String[] { folder.toPath().resolve(gml).toString(), // Input GML
shapefile.toString(), // Added trees, in Baumkatasterformat,
extension, // Output GML suffix
};
GreenEnricher.main(args);
}
}
private static void processGrafenbühl2() throws IOException, CityGMLContextException, CityGMLReadException,
InterruptedException, CityGMLWriteException, JAXBException, ParseException {
File folder = new File("data/Marieke/Grafenbühl/nur_mit_oben");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment