├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENCE ├── README.md ├── data ├── README.md ├── input-data │ └── .gitkeep ├── output-data │ └── .gitkeep └── scripts │ ├── 01-scrape.js │ ├── 02-maps.sh │ └── 03-clean.R ├── eslint.config.js ├── jsconfig.json ├── package.json ├── src ├── app.css ├── app.html ├── lib │ └── Map.svelte └── routes │ ├── +layout.js │ └── +page.svelte ├── static ├── .nojekyll ├── MDT02_COB2.csv ├── MDT05_COB1.csv ├── MDT200_COB1.csv ├── MDT200_COB2.csv ├── MDT25_COB1.csv ├── MDT25_COB2.csv ├── MTN25.json ├── MTN50.json ├── favicon.ico ├── promo.jpg ├── provinces.json └── robots.txt ├── svelte.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.11.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/data/README.md -------------------------------------------------------------------------------- /data/input-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/scripts/01-scrape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/data/scripts/01-scrape.js -------------------------------------------------------------------------------- /data/scripts/02-maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/data/scripts/02-maps.sh -------------------------------------------------------------------------------- /data/scripts/03-clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/data/scripts/03-clean.R -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/package.json -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/Map.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/src/lib/Map.svelte -------------------------------------------------------------------------------- /src/routes/+layout.js: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/MDT02_COB2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT02_COB2.csv -------------------------------------------------------------------------------- /static/MDT05_COB1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT05_COB1.csv -------------------------------------------------------------------------------- /static/MDT200_COB1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT200_COB1.csv -------------------------------------------------------------------------------- /static/MDT200_COB2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT200_COB2.csv -------------------------------------------------------------------------------- /static/MDT25_COB1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT25_COB1.csv -------------------------------------------------------------------------------- /static/MDT25_COB2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MDT25_COB2.csv -------------------------------------------------------------------------------- /static/MTN25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MTN25.json -------------------------------------------------------------------------------- /static/MTN50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/MTN50.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/promo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/promo.jpg -------------------------------------------------------------------------------- /static/provinces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/provinces.json -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/static/robots.txt -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martgnz/ign-dem-grabber/HEAD/vite.config.js --------------------------------------------------------------------------------