-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
465 changed files
with
16,452 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Empty file.
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,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Load JSON Key Display</title> | ||
<link rel='stylesheet' href='https://bootswatch.com/5/sketchy/bootstrap.css'> | ||
<style> | ||
body { padding:10px; } | ||
h2 { font-size:0.8rem; margin-left: 10px } | ||
h3 { font-size:0.6rem; margin-left: 15px ; color:gray } | ||
p { margin-left: 30px } | ||
pre {border: none; padding:40px} | ||
ul {padding-left: 40px} | ||
</style> | ||
</head> | ||
<body> | ||
<h1 id='title'>Data Descriptor</h1> | ||
<div> | ||
<code id="content"></code> | ||
</div> | ||
|
||
<script src='https://wcrp-cmip.github.io/CMIP-LD/static/404_restful.js'> | ||
|
||
</script> | ||
</body> | ||
</html> |
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,16 @@ | ||
{ | ||
"@context": { | ||
"@base": "https://wcrp-cmip.github.io/WCRP-universe/", | ||
"@vocab": "https://wcrp-cmip.github.io/WCRP-universe/", | ||
"id": "@id", | ||
"type": "@type", | ||
"cf": "https://wcrp-cmip.github.io/CF/", | ||
"cmip6plus": "https://wcrp-cmip.github.io/CMIP6Plus_CVs/", | ||
"cmip7": "https://wcrp-cmip.github.io/CMIP7_CVs/", | ||
"obs4mips": "https://wolfiex.github.io/obs4MIPs-cmor-tables-ld/", | ||
"universal": "https://wcrp-cmip.github.io/WCRP-universe/", | ||
"variables": "https://wcrp-cmip.github.io/MIP-variables/", | ||
"wcrp": "https://wcrp-cmip.github.io/" | ||
}, | ||
"@embed": "@always" | ||
} |
Binary file not shown.
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,10 @@ | ||
{ | ||
"@context": [ | ||
"../_context_", | ||
{ | ||
"@base": "https://wcrp-cmip.github.io/WCRP-universe/activity/", | ||
"@vocab": "https://wcrp-cmip.github.io/WCRP-universe/activity/" | ||
} | ||
], | ||
"@embed": "@always" | ||
} |
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,63 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"description": "A unique identifier for the activity.", | ||
"pattern": "^[a-z0-9-]+$" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"description": "The type of entity being described (e.g., 'activity').", | ||
"enum": [ | ||
"activity" | ||
] | ||
}, | ||
"description": { | ||
"type": "string", | ||
"description": "A detailed description of the activity or project.", | ||
"minLength": 10 | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the activity.", | ||
"pattern": "^[A-Za-z0-9 ]+$" | ||
}, | ||
"url": { | ||
"type": "string", | ||
"description": "A URL providing further documentation or references.", | ||
"format": "uri" | ||
} | ||
}, | ||
"required": [ | ||
"@context", | ||
"id", | ||
"type", | ||
"description", | ||
"name", | ||
"url" | ||
], | ||
"additionalProperties": false, | ||
"id": "activity", | ||
"contains": { | ||
"type": "string", | ||
"enum": [ | ||
"aerchemmip", | ||
"c4mip", | ||
"cfmip", | ||
"cmip", | ||
"damip", | ||
"dcpp", | ||
"geomip", | ||
"lesfmip", | ||
"lmip", | ||
"pmip", | ||
"ramip", | ||
"rfmip", | ||
"scenariomip", | ||
"tipmip" | ||
] | ||
}, | ||
"markdown_content": " To add a new {id} please fill in the form below. \n\n Existing entries are: \n\n\t {contains} \n ___ \n Alternatively [see here]({base}) for more examples. \n ___", | ||
"base": "https://github.com/wcrp-cmip/WCRP-universe/tree/main/src-data/activity/" | ||
} |
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 @@ | ||
{"@context": "_context_", "id": "aerchemmip", "type": ["wcrp:activity", "universal"], "description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.", "name": "AerChemMIP", "url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "aerchemmip", "type": ["wcrp:activity", "universal"], "description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.", "name": "AerChemMIP", "url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "c4mip", "type": ["wcrp:activity", "universal"], "description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.", "name": "C4MIP", "url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "c4mip", "type": ["wcrp:activity", "universal"], "description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.", "name": "C4MIP", "url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "cfmip", "type": ["wcrp:activity", "universal"], "description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.", "name": "CFMIP", "url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "cfmip", "type": ["wcrp:activity", "universal"], "description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.", "name": "CFMIP", "url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "cmip", "type": ["wcrp:activity", "universal"], "description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", "name": "CMIP", "url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "cmip", "type": ["wcrp:activity", "universal"], "description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", "name": "CMIP", "url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "damip", "type": ["wcrp:activity", "universal"], "description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.", "name": "DAMIP", "url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "damip", "type": ["wcrp:activity", "universal"], "description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.", "name": "DAMIP", "url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "dcpp", "type": ["wcrp:activity", "universal"], "description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.", "name": "DCPP", "url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "dcpp", "type": ["wcrp:activity", "universal"], "description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.", "name": "DCPP", "url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "geomip", "type": ["wcrp:activity", "universal"], "description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.", "name": "GeoMIP", "url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf"} |
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 @@ | ||
{"@context": "_context_", "id": "geomip", "type": ["wcrp:activity", "universal"], "description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.", "name": "GeoMIP", "url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf"} |
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,157 @@ | ||
{ | ||
"@context": { | ||
"@base": "https://wcrp-cmip.github.io/WCRP-universe/activity/", | ||
"@vocab": "https://wcrp-cmip.github.io/WCRP-universe/activity/", | ||
"id": "@id", | ||
"type": "@type", | ||
"cf": "https://wcrp-cmip.github.io/CF/", | ||
"cmip6plus": "https://wcrp-cmip.github.io/CMIP6Plus_CVs/", | ||
"cmip7": "https://wcrp-cmip.github.io/CMIP7_CVs/", | ||
"obs4mips": "https://wolfiex.github.io/obs4MIPs-cmor-tables-ld/", | ||
"universal": "https://wcrp-cmip.github.io/WCRP-universe/", | ||
"variables": "https://wcrp-cmip.github.io/MIP-variables/", | ||
"wcrp": "https://wcrp-cmip.github.io/" | ||
}, | ||
"@graph": [ | ||
{ | ||
"id": "aerchemmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.", | ||
"name": "AerChemMIP", | ||
"url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf" | ||
} | ||
,{ | ||
"id": "c4mip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.", | ||
"name": "C4MIP", | ||
"url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf" | ||
} | ||
,{ | ||
"id": "cfmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.", | ||
"name": "CFMIP", | ||
"url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf" | ||
} | ||
,{ | ||
"id": "cmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", | ||
"name": "CMIP", | ||
"url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf" | ||
} | ||
,{ | ||
"id": "damip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.", | ||
"name": "DAMIP", | ||
"url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf" | ||
} | ||
,{ | ||
"id": "dcpp", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.", | ||
"name": "DCPP", | ||
"url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf" | ||
} | ||
,{ | ||
"id": "geomip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.", | ||
"name": "GeoMIP", | ||
"url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf" | ||
} | ||
,{ | ||
"id": "lesfmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "The Large Ensemble Single Forcing Model Intercomparison Project", | ||
"name": "LESFMIP", | ||
"url": "https://www.frontiersin.org/articles/10.3389/fclim.2022.955414/full" | ||
} | ||
,{ | ||
"id": "lmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "LMIP explores land-atmosphere interactions and processes, with experiments like land-hist.", | ||
"name": "LMIP", | ||
"url": "https://gmd.copernicus.org/articles/10/3977/2017/gmd-10-3977-2017.pdf" | ||
} | ||
,{ | ||
"id": "pmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "PMIP focuses on past climate variability, with experiments like LIGabrupt.", | ||
"name": "PMIP", | ||
"url": "https://gmd.copernicus.org/articles/9/3461/2016/gmd-9-3461-2016.pdf" | ||
} | ||
,{ | ||
"id": "ramip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "Regional Aerosol Model Intercomparison Project", | ||
"name": "RAMIP", | ||
"url": "https://ramip.ncas.ac.uk" | ||
} | ||
,{ | ||
"id": "rfmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "RFMIP assesses the radiative forcing of climate change with experiments such as piClim-aer, piClim-histaer, and piClim-histall.", | ||
"name": "RFMIP", | ||
"url": "https://gmd.copernicus.org/articles/13/169/2020/gmd-13-169-2020.pdf" | ||
} | ||
,{ | ||
"id": "scenariomip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "ScenarioMIP focuses on future climate projections based on different socio-economic pathways, including High, Medium, and Very Low scenarios.", | ||
"name": "ScenarioMIP", | ||
"url": "https://gmd.copernicus.org/articles/12/1443/2019/gmd-12-1443-2019.pdf" | ||
} | ||
,{ | ||
"id": "tipmip", | ||
"type": [ | ||
"wcrp:activity", | ||
"universal" | ||
], | ||
"description": "Tipping Point Model Intercomparison Project", | ||
"name": "TIPMIP", | ||
"url": "https://tipmip.pik-potsdam.de/" | ||
} | ||
] | ||
} |
Oops, something went wrong.