-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from Kitware/esgf-data
Catalog modules: Pangeo & ESGF data
- Loading branch information
Showing
25 changed files
with
990 additions
and
353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"data_origin": { | ||
"source": "esgf", | ||
"id": "CMIP6.PAMIP.MOHC.HadGEM3-GC31-MM.pdSST-futAntSIC.r102i1p1f2.day.sfcWind.gn.v20210311|eagle.alcf.anl.gov" | ||
}, | ||
"data_array": { | ||
"name": "sfcWind", | ||
"x": "lon", | ||
"y": "lat", | ||
"t": "time", | ||
"t_index": 0 | ||
}, | ||
"data_slices": { | ||
"time": [ | ||
"Apr 01 2000 12:00", | ||
"May 30 2001 12:00", | ||
1 | ||
], | ||
"lat": [ | ||
-89.72, | ||
89.72, | ||
1 | ||
], | ||
"lon": [ | ||
0.42, | ||
359.58, | ||
1 | ||
] | ||
}, | ||
"ui": { | ||
"main_drawer": false, | ||
"axis_drawer": true, | ||
"unapplied_changes": false, | ||
"error_message": null, | ||
"more_info_link": null, | ||
"expanded_coordinates": [], | ||
"current_time_string": "Apr 01 2000 12:00" | ||
}, | ||
"render": { | ||
"auto": true, | ||
"x_scale": 1, | ||
"y_scale": 1, | ||
"z_scale": 1, | ||
"scalar_warp": false, | ||
"transparency": false, | ||
"transparency_function": "linear", | ||
"colormap": "cividis" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"data_origin": { | ||
"source": "pangeo", | ||
"id": "MITgcm_channel_flatbottom_02km_run01_phys_snap15D" | ||
}, | ||
"data_array": { | ||
"name": "T", | ||
"x": "YC", | ||
"y": "XC", | ||
"z": "Z", | ||
"t": "time", | ||
"t_index": 0 | ||
}, | ||
"data_slices": { | ||
"time": [ | ||
142560000, | ||
171072000, | ||
1 | ||
], | ||
"Z": [ | ||
-2912.67, | ||
-0.5, | ||
1 | ||
], | ||
"YC": [ | ||
1000, | ||
1999000, | ||
1 | ||
], | ||
"XC": [ | ||
1000, | ||
999000, | ||
1 | ||
] | ||
}, | ||
"ui": { | ||
"main_drawer": false, | ||
"axis_drawer": false, | ||
"unapplied_changes": false, | ||
"error_message": null, | ||
"more_info_link": null, | ||
"expanded_coordinates": [], | ||
"current_time_string": "139968000.0 seconds" | ||
}, | ||
"render": { | ||
"auto": true, | ||
"x_scale": 1, | ||
"y_scale": 1, | ||
"z_scale": 100, | ||
"scalar_warp": false, | ||
"transparency": false, | ||
"transparency_function": "linear", | ||
"colormap": "viridis" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "bf9da680", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"from pan3d import DatasetBuilder" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "2f052f51-86f1-4b44-bfa9-0c6d75892571", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"config_path = '../example_config_esgf.json'\n", | ||
"builder = DatasetBuilder(esgf=True, viewer=True)\n", | ||
"\n", | ||
"builder.import_config(config_path)\n", | ||
"\n", | ||
"# Show viewer in cell output\n", | ||
"await builder.viewer.ready\n", | ||
"builder.viewer.ui\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "pan3d", | ||
"language": "python", | ||
"name": "pan3d" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.18" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "bf9da680", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"from pan3d import DatasetBuilder" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "2f052f51-86f1-4b44-bfa9-0c6d75892571", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"config_path = '../example_config_pangeo.json'\n", | ||
"builder = DatasetBuilder(pangeo=True, viewer=True)\n", | ||
"\n", | ||
"builder.import_config(config_path)\n", | ||
"\n", | ||
"# Show viewer in cell output\n", | ||
"await builder.viewer.ready\n", | ||
"builder.viewer.ui\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "pan3d", | ||
"language": "python", | ||
"name": "pan3d" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.9.18" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.