├── .gitattributes ├── .gitignore ├── convert ├── __init__.py ├── __main__.py ├── cli.py ├── geo_file_utils.py ├── requirements.txt └── utils.py ├── docs └── img │ ├── flags.png │ └── interactive_cli.png ├── input.gpkg ├── readme.md ├── tiles_config.yaml └── viewer ├── index.html ├── package-lock.json ├── package.json ├── public └── output.pmtiles ├── src ├── App.tsx ├── ColorRange.tsx ├── config.ts ├── main.tsx ├── utils.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /convert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /convert/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/convert/__main__.py -------------------------------------------------------------------------------- /convert/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/convert/cli.py -------------------------------------------------------------------------------- /convert/geo_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/convert/geo_file_utils.py -------------------------------------------------------------------------------- /convert/requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | pmtiles 3 | pyogrio 4 | gdal 5 | geopandas -------------------------------------------------------------------------------- /convert/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/convert/utils.py -------------------------------------------------------------------------------- /docs/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/docs/img/flags.png -------------------------------------------------------------------------------- /docs/img/interactive_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/docs/img/interactive_cli.png -------------------------------------------------------------------------------- /input.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/input.gpkg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/readme.md -------------------------------------------------------------------------------- /tiles_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/tiles_config.yaml -------------------------------------------------------------------------------- /viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/index.html -------------------------------------------------------------------------------- /viewer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/package-lock.json -------------------------------------------------------------------------------- /viewer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/package.json -------------------------------------------------------------------------------- /viewer/public/output.pmtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/public/output.pmtiles -------------------------------------------------------------------------------- /viewer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/src/App.tsx -------------------------------------------------------------------------------- /viewer/src/ColorRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/src/ColorRange.tsx -------------------------------------------------------------------------------- /viewer/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/src/config.ts -------------------------------------------------------------------------------- /viewer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/src/main.tsx -------------------------------------------------------------------------------- /viewer/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/src/utils.ts -------------------------------------------------------------------------------- /viewer/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /viewer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/tsconfig.json -------------------------------------------------------------------------------- /viewer/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/tsconfig.node.json -------------------------------------------------------------------------------- /viewer/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/vite.config.ts -------------------------------------------------------------------------------- /viewer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matico-Platform/pmtiles-utils/HEAD/viewer/yarn.lock --------------------------------------------------------------------------------