Skip to content

Commit cf5472e

Browse files
authored
Merge pull request #19 from mattsl21/main
Get everything the same
2 parents 03c0646 + 04a5050 commit cf5472e

File tree

6 files changed

+366
-8
lines changed

6 files changed

+366
-8
lines changed
377 KB
Loading

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ dependencies:
1616
- h5netcdf
1717
- pip
1818
- pip:
19-
- global-land-mask
19+
- global-land-mask

myst.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ version: 1
33
extends:
44
- https://raw.githubusercontent.com/projectpythia/pythia-config/main/pythia.yml
55
project:
6-
title: Project Pythia Cookbook Template
7-
github: https://github.com/projectpythia/cookbook-template
6+
title: Machine Learning Hurricane Intensity Prediction Cookbook
7+
github: https://github.com/ProjectPythia/ml-hurricane-intensity
88
authors:
99
- name: The Project Pythia Community
1010
copyright: '2024'
@@ -13,9 +13,10 @@ project:
1313
- title: Preamble
1414
children:
1515
- file: notebooks/how-to-cite.md
16-
- title: Introduction
16+
- title: Data Preprocessing
1717
children:
18-
- file: notebooks/notebook-template.ipynb
18+
- file: notebooks/ibtrack_preprocessing.ipynb
19+
- file: notebooks/era5_preprocessing.ipynb
1920
jupyter:
2021
binder:
21-
repo: projectpythia/cookbook-template
22+
repo: projectpythia/ml-hurricane-intensity
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,12 @@
9494
"metadata": {},
9595
"outputs": [],
9696
"source": [
97-
"import sys"
97+
"import xarray as xr \n",
98+
"from dask.distributed import Client\n",
99+
"import matplotlib.pyplot as plt\n",
100+
"import cartopy.crs as ccrs\n",
101+
"import pandas as pd\n",
102+
"import glob"
98103
]
99104
},
100105
{
@@ -298,7 +303,7 @@
298303
"name": "python",
299304
"nbconvert_exporter": "python",
300305
"pygments_lexer": "ipython3",
301-
"version": "3.13.3"
306+
"version": "3.10.16"
302307
},
303308
"nbdime-conflicts": {
304309
"local_diff": [

0 commit comments

Comments
 (0)