Add download URL for 2005 Winnipeg

This commit is contained in:
Diego Ripley
2026-06-02 18:15:04 -04:00
parent 23a922744a
commit dd7be5f981
4 changed files with 2 additions and 41 deletions
@@ -0,0 +1 @@
https://wpgopendata.blob.core.windows.net/ortho-photos-2005/2005_ECW_Tiles.zip
@@ -0,0 +1 @@
https://wpgopendata.blob.core.windows.net/ortho-photos-2005/2005_ECW_Tiles.zip
@@ -1,41 +0,0 @@
#!/bin/bash
PROJECT_DIR="/home/ripd/Documents/Personal/Projects/tiles_experiments"
DATA_DIR="${PROJECT_DIR}/data"
DATA_INPUT_DIR="${DATA_DIR}/input/maptiler_engine_experiments"
DATA_OUTPUT_DIR="${DATA_DIR}/output/maptiler_engine_experiments"
INPUT_DIR="${PROJECT_DIR}/data/input/maptiler_engine_experiments/winnipeg/original/2024"
MBTILES_OUTPUT_FILE="${DATA_OUTPUT_DIR}/ca-mb_winnipeg-2024A00054611040_orthoimagery_2024_075mm.mbtiles"
PMTILES_OUTPUT_FILE="${DATA_OUTPUT_DIR}/ca-mb_winnipeg-2024A00054611040_orthoimagery_2024_075mm.pmtiles"
echo "Output file: $OUTPUT_FILE"
echo "Input file: ${DATA_INPUT_DIR}/*.ecw"
# Define arguments in an array
ARGS=(
-progress
-name "City of Winnipeg Orthoimagery for 2024 / Ortho-imagerie de la Ville de Winnipeg de 2024"
-description "Orthoimagery 7.5cm resolution. / Ortho-imagerie à résolution de 7,5 cm."
-attribution "Source: data.winnipeg.ca / Source: data.winnipeg.ca"
-srs_epsg
-mbtiles_compatible
-wo "NUM_THREADS=ALL_CPUS"
-wo "USE_OPENCL=TRUE"
-sparse
-scale 2.000000
-work_dir ~/tmp/maptiler_engine
-f webp32
-webp_quality 85
-webp_lossy
-webp_preset photo
-resampling cubic
-overviews_resampling average
-o "${MBTILES_OUTPUT_FILE}"
$INPUT_DIR/*.ecw
)
# Run the command with the array
maptiler-engine "${ARGS[@]}"
pmtiles convert --tmpdir=~/tmp/pmtiles ${MBTILES_OUTPUT_FILE} ${PMTILES_OUTPUT_FILE}