├── 01_heat.ipynb ├── 02_trees.ipynb ├── 03_heat_and_trees.ipynb ├── 04_dashboard.ipynb ├── README.md ├── assets ├── heat_and_trees.png └── workflow.jpg ├── catalog.yml ├── data ├── mean_temp.zarr │ ├── .zattrs │ ├── .zgroup │ ├── temperature │ │ ├── .zarray │ │ ├── .zattrs │ │ ├── 0.0 │ │ ├── 0.1 │ │ ├── 0.2 │ │ ├── 0.3 │ │ ├── 1.0 │ │ ├── 1.1 │ │ ├── 1.2 │ │ ├── 1.3 │ │ ├── 2.0 │ │ ├── 2.1 │ │ ├── 2.2 │ │ ├── 2.3 │ │ ├── 3.0 │ │ ├── 3.1 │ │ ├── 3.2 │ │ └── 3.3 │ ├── x │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs │ └── y │ │ ├── 0 │ │ ├── .zarray │ │ └── .zattrs └── trees.parq └── environment.yml /01_heat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/01_heat.ipynb -------------------------------------------------------------------------------- /02_trees.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/02_trees.ipynb -------------------------------------------------------------------------------- /03_heat_and_trees.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/03_heat_and_trees.ipynb -------------------------------------------------------------------------------- /04_dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/04_dashboard.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/README.md -------------------------------------------------------------------------------- /assets/heat_and_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/assets/heat_and_trees.png -------------------------------------------------------------------------------- /assets/workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/assets/workflow.jpg -------------------------------------------------------------------------------- /catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/catalog.yml -------------------------------------------------------------------------------- /data/mean_temp.zarr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/.zattrs -------------------------------------------------------------------------------- /data/mean_temp.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/.zarray -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/.zattrs -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/0.0 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/0.1 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/0.2 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/0.3 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/1.0 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/1.1 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/1.2 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/1.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/1.3 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/2.0 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/2.1 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/2.2 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/2.3 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/3.0 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/3.1 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/3.2 -------------------------------------------------------------------------------- /data/mean_temp.zarr/temperature/3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/temperature/3.3 -------------------------------------------------------------------------------- /data/mean_temp.zarr/x/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/x/.zarray -------------------------------------------------------------------------------- /data/mean_temp.zarr/x/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/x/.zattrs -------------------------------------------------------------------------------- /data/mean_temp.zarr/x/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/x/0 -------------------------------------------------------------------------------- /data/mean_temp.zarr/y/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/y/.zarray -------------------------------------------------------------------------------- /data/mean_temp.zarr/y/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/y/.zattrs -------------------------------------------------------------------------------- /data/mean_temp.zarr/y/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/mean_temp.zarr/y/0 -------------------------------------------------------------------------------- /data/trees.parq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/data/trees.parq -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsignell/heat_and_trees/HEAD/environment.yml --------------------------------------------------------------------------------