You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RASTER_INPUT is the path to input raster data; prepend with protocol like s3:// or hdfs:// for remote data.
51
+
OUTPUT_DIRECTORY should be a directory, not a file, as it will be the write location for an Apache Parquet data store, with partitions equivalent to parent cells of target cells at a fixed offset. However, this can also be remote (use the appropriate prefix, e.g. s3://).
help="H3 Parent resolution to index and aggregate to. Defaults to resolution - 6",
322
322
)
323
323
@click.option(
@@ -379,8 +379,8 @@ def _address_boundary_issues(
379
379
defh3(
380
380
raster_input: Union[str, Path],
381
381
output_directory: Union[str, Path],
382
-
resolution: str,
383
-
parent_res: str,
382
+
resolution: int,
383
+
parent_res: int,
384
384
upscale: int,
385
385
compression: str,
386
386
threads: int,
@@ -398,7 +398,7 @@ def h3(
398
398
OUTPUT_DIRECTORY should be a directory, not a file, as it will be the write location for an Apache Parquet data store, with partitions equivalent to parent cells of target cells at a fixed offset. However, this can also be remote (use the appropriate prefix, e.g. s3://).
0 commit comments