Skip to content

Commit c04a9c2

Browse files
committed
production push
1 parent c2c0590 commit c04a9c2

File tree

659 files changed

+48380
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

659 files changed

+48380
-0
lines changed

src-data/.DS_Store

14 KB
Binary file not shown.

src-data/.nojekyll

Whitespace-only changes.

src-data/404.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Load JSON Key Display</title>
7+
<link rel='stylesheet' href='https://bootswatch.com/5/sketchy/bootstrap.css'>
8+
<style>
9+
body { padding:10px; }
10+
h2 { font-size:0.8rem; margin-left: 10px }
11+
h3 { font-size:0.6rem; margin-left: 15px ; color:gray }
12+
p { margin-left: 30px }
13+
pre {border: none; padding:40px}
14+
ul {padding-left: 40px}
15+
</style>
16+
</head>
17+
<body>
18+
<h1 id='title'>Data Descriptor</h1>
19+
<div>
20+
<code id="content"></code>
21+
</div>
22+
23+
<script src='https://wcrp-cmip.github.io/CMIP-LD/static/404_restful.js'>
24+
25+
</script>
26+
</body>
27+
</html>

src-data/_context_

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"@context": {
3+
"@base": "https://wcrp-cmip.github.io/WCRP-universe/",
4+
"@vocab": "https://wcrp-cmip.github.io/WCRP-universe/",
5+
"entries": "@none",
6+
"id": "@id",
7+
"type": "@type",
8+
"cf": "https://wcrp-cmip.github.io/CF/",
9+
"cmip6plus": "https://wcrp-cmip.github.io/CMIP6Plus_CVs/",
10+
"cmip7": "https://wcrp-cmip.github.io/CMIP7-CVs/",
11+
"obs4mips": "https://wolfiex.github.io/obs4MIPs-cmor-tables-ld/",
12+
"universal": "https://wcrp-cmip.github.io/WCRP-universe/",
13+
"variables": "https://wcrp-cmip.github.io/MIP-variables/"
14+
},
15+
"@embed": "@always"
16+
}

src-data/activity/.DS_Store

6 KB
Binary file not shown.

src-data/activity/_context_

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"@context": [
3+
"../_context_",
4+
{
5+
"@base": "https://wcrp-cmip.github.io/WCRP-universe/activity/",
6+
"@vocab": "https://wcrp-cmip.github.io/WCRP-universe/activity/"
7+
}
8+
],
9+
"@embed": "@always",
10+
"@type": [
11+
"universal"
12+
]
13+
}

src-data/activity/_schema_

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"type": "object",
3+
"properties": {
4+
"id": {
5+
"type": "string",
6+
"description": "A unique identifier for the activity.",
7+
"pattern": "^[a-z0-9-]+$"
8+
},
9+
"type": {
10+
"type": "string",
11+
"description": "The type of entity being described (e.g., 'activity').",
12+
"enum": [
13+
"activity"
14+
]
15+
},
16+
"description": {
17+
"type": "string",
18+
"description": "A detailed description of the activity or project.",
19+
"minLength": 10
20+
},
21+
"name": {
22+
"type": "string",
23+
"description": "The name of the activity.",
24+
"pattern": "^[A-Za-z0-9 ]+$"
25+
},
26+
"url": {
27+
"type": "string",
28+
"description": "A URL providing further documentation or references.",
29+
"format": "uri"
30+
}
31+
},
32+
"required": [
33+
"@context",
34+
"id",
35+
"type",
36+
"description",
37+
"name",
38+
"url"
39+
],
40+
"additionalProperties": false,
41+
"id": "activity",
42+
"contains": {
43+
"type": "string",
44+
"enum": [
45+
"aerchemmip",
46+
"c4mip",
47+
"cfmip",
48+
"cmip",
49+
"damip",
50+
"dcpp",
51+
"geomip",
52+
"lesfmip",
53+
"lmip",
54+
"pmip",
55+
"ramip",
56+
"rfmip",
57+
"scenariomip",
58+
"tipmip"
59+
]
60+
},
61+
"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 ___",
62+
"base": "https://github.com/wcrp-cmip/WCRP-universe/tree/main/src-data/activity/"
63+
}

src-data/activity/aerchemmip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "aerchemmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.",
9+
"url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf",
10+
"label": "AerChemMIP"
11+
}

src-data/activity/aerchemmip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "aerchemmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.",
9+
"url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf",
10+
"label": "AerChemMIP"
11+
}

src-data/activity/c4mip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "c4mip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.",
9+
"url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf",
10+
"label": "C4MIP"
11+
}

src-data/activity/c4mip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "c4mip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.",
9+
"url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf",
10+
"label": "C4MIP"
11+
}

src-data/activity/cfmip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "cfmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.",
9+
"url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf",
10+
"label": "CFMIP"
11+
}

src-data/activity/cfmip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "cfmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.",
9+
"url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf",
10+
"label": "CFMIP"
11+
}

src-data/activity/cmip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "cmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments",
9+
"url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf",
10+
"label": "CMIP"
11+
}

src-data/activity/cmip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "cmip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments",
9+
"url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf",
10+
"label": "CMIP"
11+
}

src-data/activity/damip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "damip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.",
9+
"url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf",
10+
"label": "DAMIP"
11+
}

src-data/activity/damip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "damip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.",
9+
"url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf",
10+
"label": "DAMIP"
11+
}

src-data/activity/dcpp

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "dcpp",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.",
9+
"url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf",
10+
"label": "DCPP"
11+
}

src-data/activity/dcpp.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "dcpp",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.",
9+
"url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf",
10+
"label": "DCPP"
11+
}

src-data/activity/geomip

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "geomip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.",
9+
"url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf",
10+
"label": "GeoMIP"
11+
}

src-data/activity/geomip.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "_context_",
3+
"id": "geomip",
4+
"type": [
5+
"wcrp:activity",
6+
"universal"
7+
],
8+
"description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.",
9+
"url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf",
10+
"label": "GeoMIP"
11+
}

0 commit comments

Comments
 (0)