fix(tiles/tribal): correct geojson path in tile pipeline

This commit is contained in:
Chris Alfano 2024-12-09 16:58:59 -05:00 committed by Carlos Felix
parent b27a918da7
commit f9944767db

View file

@ -80,7 +80,7 @@ def generate_tiles(data_path: Path, generate_tribal_layer: bool) -> None:
USA_TRIBAL_MAX_ZOOM = 11
tribal_tiles_path = data_path / "tribal" / "tiles"
tribal_geojson_dir = data_path / "tribal" / "geojson"
tribal_geojson_dir = data_path / "tribal" / "geographic_data"
# remove existing mbtiles file
remove_all_from_dir(tribal_tiles_path)