Skip to content

v0.2.47..v0.2.48 changeset HootProperties.java

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/HootProperties.java b/hoot-services/src/main/java/hoot/services/HootProperties.java
index 0bb41c2..2722854 100644
--- a/hoot-services/src/main/java/hoot/services/HootProperties.java
+++ b/hoot-services/src/main/java/hoot/services/HootProperties.java
@@ -85,6 +85,7 @@ public final class HootProperties {
     public static final String EXPORT_SIZE_THRESHOLD;
     public static final String HTTP_TIMEOUT;
     public static final String GRAIL_OVERPASS_QUERY;
+    public static final String GRAIL_OVERPASS_STATS_QUERY;
     public static final String OSMAPI_DB_NAME;
     public static final String MAP_QUERY_DIMENSIONS;
     public static final String MAP_QUERY_AREA_DEGREES;
@@ -130,6 +131,7 @@ public final class HootProperties {
     public static final String PUBLIC_OSMAPI_CAPABILITIES_URL;
 
     public static final String PUBLIC_OVERPASS_URL;
+    public static final String MAX_OVERPASS_FEATURE_COUNT;
 
     public static final String RAILSPORT_PUSH_URL;
     public static final String RAILSPORT_PULL_URL;
@@ -219,7 +221,9 @@ public final class HootProperties {
         INGEST_SIZE_THRESHOLD = getProperty("ingestSizeThreshold");
         EXPORT_SIZE_THRESHOLD = getProperty("exportSizeThreshold");
         HTTP_TIMEOUT = getProperty("httpTimeout");
+        MAX_OVERPASS_FEATURE_COUNT = getProperty("grailMaxFeatureCount");
         GRAIL_OVERPASS_QUERY = getProperty("grailOverpassQueryPath");
+        GRAIL_OVERPASS_STATS_QUERY = getProperty("grailOverpassStatsQueryPath");
         MAP_QUERY_DIMENSIONS = getProperty("mapQueryDimensions");
         MAP_QUERY_AREA_DEGREES = getProperty("maxQueryAreaDegrees");
         MAX_QUERY_NODES = getProperty("maxQueryNodes");
Clone this wiki locally