Visualize, download, and process Antarctic ice sheet temperature data. Resources:
You'll need GDAL and tippecanoe. We use a simple Makefile to (re)generate data.
makeTo force regeneration of all data:
make -BIf your default GDAL install doesn't have parquet reader support, you can customize the GDAL location:
GDAL=/path/to/parquet/enabed/gdal makeFirst, clone the repository:
git clone https://github.com/elizadawson/living-ice-sheet-temperature
cd living-ice-sheet-temperatureTo run the frontend locally, get yarn, then:
cd frontend
yarn install
yarn devThis will open the frontend at http://localhost:5174/living-ice-sheet-temperature/.
For backend processing, we have some light tests:
uv run pytestTo run all of our checks (linting, formatting, etc):
scripts/check