Skip to content

Commit

Permalink
small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
teceP committed May 8, 2020
1 parent 0fa5463 commit daa9b8e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions OSMImportUpdate-forked.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib" level="project" />
<orderEntry type="library" name="postgresql-42.1.1" level="project" />
</component>
</module>
4 changes: 2 additions & 2 deletions src/ohdm2geoserverrendering/OHDM2Geoserverrendering.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class OHDM2Geoserverrendering {
final static String MY_ROADS = "my_roads";
final static String MY_TRANSPORT_AREAS = "my_transport_areas";
final static String MY_TRANSPORT_POINTS = "my_transport_points";
final static String MY_WATERAREAS = "my_waterareas";
final static String MY_WATERAREA = "my_waterarea";
final static String MY_WATERWAYS = "my_waterways";

public static void main(String[] args) throws SQLException, IOException {
Expand Down Expand Up @@ -367,7 +367,7 @@ public void transformEpsg(SQLStatementQueue sql, String targetSchema, String eps
tables.add(MY_ROADS);
tables.add(MY_TRANSPORT_AREAS);
tables.add(MY_TRANSPORT_POINTS);
tables.add(MY_WATERAREAS);
tables.add(MY_WATERAREA);
tables.add(MY_WATERWAYS);

for(String table : tables){
Expand Down

0 comments on commit daa9b8e

Please sign in to comment.