├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── docs.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── CHANGELOG.md ├── _includes │ ├── admin-datasets.md │ ├── api-quickstart.md │ ├── common-cli-options.md │ ├── compression-options.md │ └── h3-resolutions.md ├── api │ ├── core.md │ └── overview.md ├── cli │ ├── add.md │ ├── benchmark.md │ ├── check.md │ ├── convert.md │ ├── inspect.md │ ├── overview.md │ ├── partition.md │ ├── sort.md │ ├── stac.md │ └── upload.md ├── contributing.md ├── examples │ ├── basic.md │ └── batch.md ├── getting-started │ ├── installation.md │ └── quickstart.md ├── guide │ ├── add.md │ ├── check.md │ ├── convert.md │ ├── inspect.md │ ├── partition.md │ ├── remote-files.md │ ├── sort.md │ ├── stac.md │ └── upload.md └── index.md ├── examples ├── README.md ├── basic_usage.py └── batch_processing.py ├── geoparquet_io ├── __init__.py ├── cli.py ├── cli │ ├── __init__.py │ ├── decorators.py │ ├── fix_helpers.py │ └── main.py └── core │ ├── add_admin_divisions_multi.py │ ├── add_bbox_column.py │ ├── add_bbox_metadata.py │ ├── add_country_codes.py │ ├── add_h3_column.py │ ├── add_kdtree_column.py │ ├── admin_datasets.py │ ├── benchmark.py │ ├── check_fixes.py │ ├── check_parquet_structure.py │ ├── check_spatial_order.py │ ├── common.py │ ├── convert.py │ ├── extract.py │ ├── hilbert_order.py │ ├── inspect_utils.py │ ├── metadata_utils.py │ ├── partition_admin_hierarchical.py │ ├── partition_by_h3.py │ ├── partition_by_kdtree.py │ ├── partition_by_string.py │ ├── partition_common.py │ ├── split_by_country.py │ ├── stac.py │ ├── stac_check.py │ └── upload.py ├── mkdocs.yml ├── pyproject.toml ├── tests ├── README.md ├── __init__.py ├── conftest.py ├── data │ ├── buildings_test.dbf │ ├── buildings_test.geojson │ ├── buildings_test.gpkg │ ├── buildings_test.parquet │ ├── buildings_test.prj │ ├── buildings_test.shp │ ├── buildings_test.shx │ ├── create_csv_fixtures.py │ ├── mixed_geometries.csv │ ├── places_test.parquet │ ├── points_geometry.csv │ ├── points_invalid_latlon.csv │ ├── points_invalid_wkt.csv │ ├── points_latitude_longitude.csv │ ├── points_latlon.csv │ ├── points_semicolon.txt │ ├── points_wkt.csv │ └── points_wkt.tsv ├── test_add.py ├── test_admin_datasets.py ├── test_benchmark.py ├── test_bounds.py ├── test_check.py ├── test_check_fix.py ├── test_convert.py ├── test_country_code.py ├── test_dry_run.py ├── test_extract.py ├── test_hive_partition.py ├── test_inspect.py ├── test_kdtree.py ├── test_meta.py ├── test_output_format.py ├── test_partition.py ├── test_remote_files.py ├── test_sort.py ├── test_stac.py ├── test_stac_check.py └── test_upload.py └── uv.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/_includes/admin-datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/_includes/admin-datasets.md -------------------------------------------------------------------------------- /docs/_includes/api-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/_includes/api-quickstart.md -------------------------------------------------------------------------------- /docs/_includes/common-cli-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/_includes/common-cli-options.md -------------------------------------------------------------------------------- /docs/_includes/compression-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/_includes/compression-options.md -------------------------------------------------------------------------------- /docs/_includes/h3-resolutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/_includes/h3-resolutions.md -------------------------------------------------------------------------------- /docs/api/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/api/core.md -------------------------------------------------------------------------------- /docs/api/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/api/overview.md -------------------------------------------------------------------------------- /docs/cli/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/add.md -------------------------------------------------------------------------------- /docs/cli/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/benchmark.md -------------------------------------------------------------------------------- /docs/cli/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/check.md -------------------------------------------------------------------------------- /docs/cli/convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/convert.md -------------------------------------------------------------------------------- /docs/cli/inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/inspect.md -------------------------------------------------------------------------------- /docs/cli/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/overview.md -------------------------------------------------------------------------------- /docs/cli/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/partition.md -------------------------------------------------------------------------------- /docs/cli/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/sort.md -------------------------------------------------------------------------------- /docs/cli/stac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/stac.md -------------------------------------------------------------------------------- /docs/cli/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/cli/upload.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/examples/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/examples/basic.md -------------------------------------------------------------------------------- /docs/examples/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/examples/batch.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/getting-started/quickstart.md -------------------------------------------------------------------------------- /docs/guide/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/add.md -------------------------------------------------------------------------------- /docs/guide/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/check.md -------------------------------------------------------------------------------- /docs/guide/convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/convert.md -------------------------------------------------------------------------------- /docs/guide/inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/inspect.md -------------------------------------------------------------------------------- /docs/guide/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/partition.md -------------------------------------------------------------------------------- /docs/guide/remote-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/remote-files.md -------------------------------------------------------------------------------- /docs/guide/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/sort.md -------------------------------------------------------------------------------- /docs/guide/stac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/stac.md -------------------------------------------------------------------------------- /docs/guide/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/guide/upload.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/examples/basic_usage.py -------------------------------------------------------------------------------- /examples/batch_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/examples/batch_processing.py -------------------------------------------------------------------------------- /geoparquet_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/__init__.py -------------------------------------------------------------------------------- /geoparquet_io/cli.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geoparquet_io/cli/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to mark directory as a Python package 2 | -------------------------------------------------------------------------------- /geoparquet_io/cli/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/cli/decorators.py -------------------------------------------------------------------------------- /geoparquet_io/cli/fix_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/cli/fix_helpers.py -------------------------------------------------------------------------------- /geoparquet_io/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/cli/main.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_admin_divisions_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_admin_divisions_multi.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_bbox_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_bbox_column.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_bbox_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_bbox_metadata.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_country_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_country_codes.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_h3_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_h3_column.py -------------------------------------------------------------------------------- /geoparquet_io/core/add_kdtree_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/add_kdtree_column.py -------------------------------------------------------------------------------- /geoparquet_io/core/admin_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/admin_datasets.py -------------------------------------------------------------------------------- /geoparquet_io/core/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/benchmark.py -------------------------------------------------------------------------------- /geoparquet_io/core/check_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/check_fixes.py -------------------------------------------------------------------------------- /geoparquet_io/core/check_parquet_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/check_parquet_structure.py -------------------------------------------------------------------------------- /geoparquet_io/core/check_spatial_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/check_spatial_order.py -------------------------------------------------------------------------------- /geoparquet_io/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/common.py -------------------------------------------------------------------------------- /geoparquet_io/core/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/convert.py -------------------------------------------------------------------------------- /geoparquet_io/core/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/extract.py -------------------------------------------------------------------------------- /geoparquet_io/core/hilbert_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/hilbert_order.py -------------------------------------------------------------------------------- /geoparquet_io/core/inspect_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/inspect_utils.py -------------------------------------------------------------------------------- /geoparquet_io/core/metadata_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/metadata_utils.py -------------------------------------------------------------------------------- /geoparquet_io/core/partition_admin_hierarchical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/partition_admin_hierarchical.py -------------------------------------------------------------------------------- /geoparquet_io/core/partition_by_h3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/partition_by_h3.py -------------------------------------------------------------------------------- /geoparquet_io/core/partition_by_kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/partition_by_kdtree.py -------------------------------------------------------------------------------- /geoparquet_io/core/partition_by_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/partition_by_string.py -------------------------------------------------------------------------------- /geoparquet_io/core/partition_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/partition_common.py -------------------------------------------------------------------------------- /geoparquet_io/core/split_by_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/split_by_country.py -------------------------------------------------------------------------------- /geoparquet_io/core/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/stac.py -------------------------------------------------------------------------------- /geoparquet_io/core/stac_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/stac_check.py -------------------------------------------------------------------------------- /geoparquet_io/core/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/geoparquet_io/core/upload.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Test package for geoparquet-tools 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/buildings_test.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.dbf -------------------------------------------------------------------------------- /tests/data/buildings_test.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.geojson -------------------------------------------------------------------------------- /tests/data/buildings_test.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.gpkg -------------------------------------------------------------------------------- /tests/data/buildings_test.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.parquet -------------------------------------------------------------------------------- /tests/data/buildings_test.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.prj -------------------------------------------------------------------------------- /tests/data/buildings_test.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.shp -------------------------------------------------------------------------------- /tests/data/buildings_test.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/buildings_test.shx -------------------------------------------------------------------------------- /tests/data/create_csv_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/create_csv_fixtures.py -------------------------------------------------------------------------------- /tests/data/mixed_geometries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/mixed_geometries.csv -------------------------------------------------------------------------------- /tests/data/places_test.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/places_test.parquet -------------------------------------------------------------------------------- /tests/data/points_geometry.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_geometry.csv -------------------------------------------------------------------------------- /tests/data/points_invalid_latlon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_invalid_latlon.csv -------------------------------------------------------------------------------- /tests/data/points_invalid_wkt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_invalid_wkt.csv -------------------------------------------------------------------------------- /tests/data/points_latitude_longitude.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_latitude_longitude.csv -------------------------------------------------------------------------------- /tests/data/points_latlon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_latlon.csv -------------------------------------------------------------------------------- /tests/data/points_semicolon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_semicolon.txt -------------------------------------------------------------------------------- /tests/data/points_wkt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_wkt.csv -------------------------------------------------------------------------------- /tests/data/points_wkt.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/data/points_wkt.tsv -------------------------------------------------------------------------------- /tests/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_add.py -------------------------------------------------------------------------------- /tests/test_admin_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_admin_datasets.py -------------------------------------------------------------------------------- /tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_benchmark.py -------------------------------------------------------------------------------- /tests/test_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_bounds.py -------------------------------------------------------------------------------- /tests/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_check.py -------------------------------------------------------------------------------- /tests/test_check_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_check_fix.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_country_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_country_code.py -------------------------------------------------------------------------------- /tests/test_dry_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_dry_run.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_hive_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_hive_partition.py -------------------------------------------------------------------------------- /tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_inspect.py -------------------------------------------------------------------------------- /tests/test_kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_kdtree.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_output_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_output_format.py -------------------------------------------------------------------------------- /tests/test_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_partition.py -------------------------------------------------------------------------------- /tests/test_remote_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_remote_files.py -------------------------------------------------------------------------------- /tests/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_sort.py -------------------------------------------------------------------------------- /tests/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_stac.py -------------------------------------------------------------------------------- /tests/test_stac_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_stac_check.py -------------------------------------------------------------------------------- /tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/tests/test_upload.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoparquet/geoparquet-io/HEAD/uv.lock --------------------------------------------------------------------------------