aboutsummaryrefslogtreecommitdiff
path: root/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java
diff options
context:
space:
mode:
Diffstat (limited to 'data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java')
-rw-r--r--data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java b/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java
index 7763b22..ddf659e 100644
--- a/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java
+++ b/data_pipeline/src/main/java/com/android/timezone/location/data_pipeline/steps/TzS2CellUnionsToTzS2Ranges.java
@@ -80,25 +80,24 @@ public final class TzS2CellUnionsToTzS2Ranges {
description = "The input directory containing the TzS2CellUnion files",
required = true,
converter = FileConverter.class)
- File inputDir;
+ public File inputDir;
@Parameter(names = "--num-threads",
description = "The number of threads to use",
required = true)
- int numThreads;
+ public int numThreads;
@Parameter(names = "--output",
description = "The output directory to store the TzS2Ranges files",
required = true,
converter = FileConverter.class)
- File outputDir;
+ public File outputDir;
@Parameter(names = "--s2-level",
description = "The S2 level of the ranges to produce. The TzS2CellUnion must not "
+ "contain S2 Cell IDs with a higher level than this",
required = true)
- int s2Level;
-
+ public int s2Level;
}
/**