diff --git a/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.bin b/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.bin index 941ee17..8ff7da3 100755 Binary files a/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.bin and b/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.bin differ diff --git a/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.lock b/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.lock index 33d4553..d0d91d8 100755 Binary files a/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.lock and b/shp-exporter/.gradle/8.14.3/executionHistory/executionHistory.lock differ diff --git a/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.bin b/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.bin index cd05c3f..b03a5d7 100755 Binary files a/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.bin and b/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.bin differ diff --git a/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.lock b/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.lock index 9133fe0..26da333 100755 Binary files a/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.lock and b/shp-exporter/.gradle/8.14.3/fileHashes/fileHashes.lock differ diff --git a/shp-exporter/.gradle/8.14.3/fileHashes/resourceHashesCache.bin b/shp-exporter/.gradle/8.14.3/fileHashes/resourceHashesCache.bin index a897292..067ca19 100755 Binary files a/shp-exporter/.gradle/8.14.3/fileHashes/resourceHashesCache.bin and b/shp-exporter/.gradle/8.14.3/fileHashes/resourceHashesCache.bin differ diff --git a/shp-exporter/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/shp-exporter/.gradle/buildOutputCleanup/buildOutputCleanup.lock index 60614aa..3320cbc 100755 Binary files a/shp-exporter/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/shp-exporter/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/shp-exporter/.gradle/buildOutputCleanup/outputFiles.bin b/shp-exporter/.gradle/buildOutputCleanup/outputFiles.bin index cd38a35..5709c06 100755 Binary files a/shp-exporter/.gradle/buildOutputCleanup/outputFiles.bin and b/shp-exporter/.gradle/buildOutputCleanup/outputFiles.bin differ diff --git a/shp-exporter/.gradle/file-system.probe b/shp-exporter/.gradle/file-system.probe index bd1a33a..aecd84c 100755 Binary files a/shp-exporter/.gradle/file-system.probe and b/shp-exporter/.gradle/file-system.probe differ diff --git a/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$1.class b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$1.class new file mode 100644 index 0000000..f187510 Binary files /dev/null and b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$1.class differ diff --git a/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$2.class b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$2.class new file mode 100644 index 0000000..cb2dc0d Binary files /dev/null and b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$2.class differ diff --git a/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$InferenceResultRowMapper.class b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$InferenceResultRowMapper.class new file mode 100644 index 0000000..228b596 Binary files /dev/null and b/shp-exporter/build/classes/java/main/com/kamco/makesample/repository/InferenceResultRepository$InferenceResultRowMapper.class differ diff --git a/shp-exporter/build/libs/shp-exporter.jar b/shp-exporter/build/libs/shp-exporter.jar index b14c40c..65670d5 100644 Binary files a/shp-exporter/build/libs/shp-exporter.jar and b/shp-exporter/build/libs/shp-exporter.jar differ diff --git a/shp-exporter/build/resources/main/application-dev.yml b/shp-exporter/build/resources/main/application-dev.yml new file mode 100644 index 0000000..6c92ce3 --- /dev/null +++ b/shp-exporter/build/resources/main/application-dev.yml @@ -0,0 +1,51 @@ +spring: + datasource: + url: jdbc:postgresql://192.168.2.127:15432/kamco_cds + username: kamco_cds + password: kamco_cds_Q!W@E#R$ + driver-class-name: org.postgresql.Driver + hikari: + maximum-pool-size: 5 + connection-timeout: 30000 + idle-timeout: 600000 + max-lifetime: 1800000 + + application: + name: make-shapefile-service + + main: + web-application-type: none # Disable web server for CLI application + +converter: + inference-id: D5E46F60FC40B1A8BE0CD1F3547AA6 + # Optional: omit or set empty to create merged shapefile for all batch-ids + + batch-ids: # Required + - 252 + - 253 + - 257 + output-base-dir: '/kamco-nfs/model_output/export/' + crs: 'EPSG:5186' + +geoserver: + base-url: 'https://kamco.geo-dev.gs.dabeeo.com/geoserver' + workspace: 'cd' + overwrite-existing: true + connection-timeout: 30000 + read-timeout: 60000 + # Credentials (optional - environment variables take precedence) + # Uncomment and set values for development convenience + # For production, use GEOSERVER_USERNAME and GEOSERVER_PASSWORD environment variables + username: 'admin' + password: 'geoserver' + +logging: + level: + com.kamco.makesample: DEBUG + org.springframework: WARN + pattern: + console: '%d{yyyy-MM-dd HH:mm:ss} - %msg%n' + +layer: + geoserver-url: http://label-tile.gs.dabeeo.com + workspace: cd diff --git a/shp-exporter/build/resources/main/application-local.yml b/shp-exporter/build/resources/main/application-local.yml new file mode 100644 index 0000000..196f450 --- /dev/null +++ b/shp-exporter/build/resources/main/application-local.yml @@ -0,0 +1,52 @@ +spring: + datasource: + url: jdbc:postgresql://192.168.2.127:15432/kamco_cds + username: kamco_cds + password: kamco_cds_Q!W@E#R$ + driver-class-name: org.postgresql.Driver + hikari: + maximum-pool-size: 5 + connection-timeout: 30000 + idle-timeout: 600000 + max-lifetime: 1800000 + + application: + name: make-shapefile-service + + main: + web-application-type: none # Disable web server for CLI application + +converter: + inference-id: D5E46F60FC40B1A8BE0CD1F3547AA6 + # Optional: omit or set empty to create merged shapefile for all batch-ids + + batch-ids: # Required + - 252 + - 253 + - 257 + output-base-dir: '/kamco-nfs/model_output/export/' + #output-base-dir: '/Users/bokmin/export/' + crs: 'EPSG:5186' + +geoserver: + base-url: 'https://kamco.geo-dev.gs.dabeeo.com/geoserver' + workspace: 'cd' + overwrite-existing: true + connection-timeout: 30000 + read-timeout: 60000 + # Credentials (optional - environment variables take precedence) + # Uncomment and set values for development convenience + # For production, use GEOSERVER_USERNAME and GEOSERVER_PASSWORD environment variables + username: 'admin' + password: 'geoserver' + +logging: + level: + com.kamco.makesample: DEBUG + org.springframework: WARN + pattern: + console: '%d{yyyy-MM-dd HH:mm:ss} - %msg%n' + +layer: + geoserver-url: http://label-tile.gs.dabeeo.com + workspace: cd diff --git a/shp-exporter/build/resources/main/application-prod.yml b/shp-exporter/build/resources/main/application-prod.yml new file mode 100644 index 0000000..3e1665d --- /dev/null +++ b/shp-exporter/build/resources/main/application-prod.yml @@ -0,0 +1,53 @@ +spring: + datasource: + url: jdbc:postgresql://kamco-cd-postgis:5432/kamco_cds + username: kamco_cds + password: kamco_cds_Q!W@E#R$ + driver-class-name: org.postgresql.Driver + hikari: + maximum-pool-size: 5 + connection-timeout: 30000 + idle-timeout: 600000 + max-lifetime: 1800000 + + application: + name: make-shapefile-service + + main: + web-application-type: none # Disable web server for CLI application + +converter: + inference-id: D5E46F60FC40B1A8BE0CD1F3547AA6 + # Optional: omit or set empty to create merged shapefile for all batch-ids + + batch-ids: # Required + - 252 + - 253 + - 257 + output-base-dir: '/data/model_output/export/' + crs: 'EPSG:5186' + +geoserver: + base-url: 'https://kamco.geo-dev.gs.dabeeo.com/geoserver' + workspace: 'cd' + overwrite-existing: true + connection-timeout: 30000 + read-timeout: 60000 + # Credentials (optional - environment variables take precedence) + # Uncomment and set values for development convenience + # For production, use GEOSERVER_USERNAME and GEOSERVER_PASSWORD environment variables + username: 'admin' + password: 'geoserver' + +logging: + level: + com.kamco.makesample: DEBUG + org.springframework: WARN + pattern: + console: '%d{yyyy-MM-dd HH:mm:ss} - %msg%n' + +layer: + geoserver-url: https://kamco.geo-dev.gs.dabeeo.com + wms-path: geoserver/cd + wmts-path: geoserver/cd/gwc/service + workspace: cd diff --git a/shp-exporter/build/resources/main/application.yml b/shp-exporter/build/resources/main/application.yml index 0ebef9f..65d113d 100755 --- a/shp-exporter/build/resources/main/application.yml +++ b/shp-exporter/build/resources/main/application.yml @@ -1,3 +1,5 @@ spring: application: name: make-shapefile-service + profiles: + active: prod diff --git a/shp-exporter/build/tmp/compileJava/previous-compilation-data.bin b/shp-exporter/build/tmp/compileJava/previous-compilation-data.bin index 7563f0a..1a25040 100644 Binary files a/shp-exporter/build/tmp/compileJava/previous-compilation-data.bin and b/shp-exporter/build/tmp/compileJava/previous-compilation-data.bin differ diff --git a/shp-exporter/src/main/resources/application-prod.yml b/shp-exporter/src/main/resources/application-prod.yml index 049ebf6..3e1665d 100755 --- a/shp-exporter/src/main/resources/application-prod.yml +++ b/shp-exporter/src/main/resources/application-prod.yml @@ -24,7 +24,7 @@ converter: - 252 - 253 - 257 - output-base-dir: '/kamco-nfs/model_output/export/' + output-base-dir: '/data/model_output/export/' crs: 'EPSG:5186' geoserver: diff --git a/shp-exporter/src/main/resources/application.yml b/shp-exporter/src/main/resources/application.yml index 0ebef9f..65d113d 100755 --- a/shp-exporter/src/main/resources/application.yml +++ b/shp-exporter/src/main/resources/application.yml @@ -1,3 +1,5 @@ spring: application: name: make-shapefile-service + profiles: + active: prod