diff --git a/activity/README.md b/activity/README.md deleted file mode 100644 index a44ceeb7..00000000 --- a/activity/README.md +++ /dev/null @@ -1,96 +0,0 @@ - - -
- -# Activity (universal) - - - -## Description -Defines the type of climate modeling activity or experiment being performed. Activities represent different categories of climate experiments such as historical simulations, future projections, or paleoclimate studies. - -[View in HTML](https://wcrp-cmip.github.io/WCRP-universe/activity/activity) - -
- - - -
- - -| Item | Reference | -| --- | --- | -| Type | `wrcp:activity` | -| Pydantic class | [`activity`](https://github.com/ESGF/esgf-vocab/blob/main/src/esgvoc/api/data_descriptors/activity.py): Activity | -| | | -| JSON-LD | `universal:activity` | -| Expanded reference link | [https://wcrp-cmip.github.io/WCRP-universe/activity](https://wcrp-cmip.github.io/WCRP-universe/activity) | -| Developer Repo | [![Open in GitHub](https://img.shields.io/badge/Open-GitHub-blue?logo=github&style=flat-square)](https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/activity) | - - -
- No external links found. -
- -## Content Schema - -- **`id`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`drs_name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`long_name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`url`** (**str | None**) - << No description in pydantic model (see esgvoc) >> -- **`type`** (**str**) - << No description in pydantic model (see esgvoc) >> - - - - - -
- -
- -## Usage - -### Online Viewer -To view a file in a browser use the content link with `.json` appended. -eg. https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/activity/aera-mip.json - -### Getting a File. - -A short example of how to integrate the computed ld file into your code. - -```python - -import cmipld -cmipld.get( "universal:activity/aera-mip") - -``` - -### Framing -Framing is a way we can filter the downloaded data to match what we want. -```js -frame = { - "@context": "https://wcrp-cmip.github.io/WCRP-universe/activity/_context_", - "@type": "wcrp:activity", - "keys we want": "", - "@explicit": True - - } - -``` - -```python - -import cmipld -cmipld.frame( "universal:activity/aera-mip" , frame) - -``` -
- - \ No newline at end of file diff --git a/activity/_context b/activity/_context deleted file mode 100644 index b23417cc..00000000 --- a/activity/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/activity/", - "@base": "https://constants.mipcvs.dev/activity/", - "@esgvoc": "Activity", - "@vocab": "https://constants.mipcvs.dev/docs/contents/Activity/" - } -} \ No newline at end of file diff --git a/activity/aera-mip.json b/activity/aera-mip.json deleted file mode 100644 index e394b9b7..00000000 --- a/activity/aera-mip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "AERA-MIP", - "ui_label": "Adaptive Emission Reduction Approach Modelling Intercomparison Project", - "description": "", - "url": "", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "aera-mip" -} diff --git a/activity/aerchemmip.json b/activity/aerchemmip.json deleted file mode 100644 index ccbe3a66..00000000 --- a/activity/aerchemmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "AerChemMIP", - "ui_label": "", - "description": "AerChemMIP experiments focus on the role of atmospheric chemistry and aerosols in climate, including piClim and hist-piSLCF simulations.", - "url": "https://gmd.copernicus.org/articles/10/585/2017/gmd-10-585-2017.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "aerchemmip" -} diff --git a/activity/aerchemmip2.json b/activity/aerchemmip2.json deleted file mode 100644 index 6c4c0244..00000000 --- a/activity/aerchemmip2.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "AerChemMIP2", - "ui_label": "Aerosol Chemistry Model Intercomparison Project phase 2", - "description": "", - "url": "https://wiki.met.no/aerocom/aerchemmip/start", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "aerchemmip2" -} diff --git a/activity/airtable_update.ipynb b/activity/airtable_update.ipynb deleted file mode 100644 index a78bf43d..00000000 --- a/activity/airtable_update.ipynb +++ /dev/null @@ -1,93 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import json" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "data = pd.read_csv('~/Downloads/activities.csv')\n", - "data.head()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "for i,d in data.iterrows():\n", - " acronym = d['MIP acronym/identifier'].replace('_','-')\n", - " id = acronym.lower()\n", - " \n", - " if '/' in id: continue\n", - " \n", - " try:\n", - " update = json.load(open(f'{id}.json'))\n", - " except:\n", - " update = {\"description\": \"\"}\n", - " \n", - " if isinstance(d['MIP website'], str):\n", - " url = d['MIP website'].split(' ')[0]\n", - " else:\n", - " url = \"\"\n", - " \n", - " new = {\n", - " \"@context\": \"_context_\",\n", - " \"id\": id,\n", - " \"type\": [\n", - " \"wcrp:activity\",\n", - " \"universal\"\n", - " ],\n", - " \"url\": url,\n", - " \"label\": acronym,\n", - " \"ui-label\": d['MIP long name'],\n", - " }\n", - " \n", - " new.update(update)\n", - " \n", - " print(json.dumps(new, indent=2))\n", - " with open(f'{id}.json', 'w') as f:\n", - " json.dump(new, f, indent=2)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "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.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/activity/c4mip.json b/activity/c4mip.json deleted file mode 100644 index 157b5ce3..00000000 --- a/activity/c4mip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "C4MIP", - "ui_label": "Coupled Climate Carbon Cycle MIP", - "description": "C4MIP experiments focus on carbon cycle feedbacks and interactions, including 1pctCO2-bgc and esm-flat10-cdr experiments.", - "url": "https://gmd.copernicus.org/articles/9/2853/2016/gmd-9-2853-2016.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "c4mip" -} diff --git a/activity/cdrmip.json b/activity/cdrmip.json deleted file mode 100644 index 351fcaf8..00000000 --- a/activity/cdrmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CDRMIP", - "ui_label": "Carbon Dioxide Removal Model Intercomparison Project", - "description": "", - "url": "https://cdrmip.carbondioxide-removal.eu/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "cdrmip" -} diff --git a/activity/ceresmip.json b/activity/ceresmip.json deleted file mode 100644 index 8e9825ae..00000000 --- a/activity/ceresmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CERESMIP", - "ui_label": "CERES-era Model Intercomparison Project", - "description": "", - "url": "https://data.giss.nasa.gov/CERESMIP", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "ceresmip" -} diff --git a/activity/cfmip.json b/activity/cfmip.json deleted file mode 100644 index 83654c5c..00000000 --- a/activity/cfmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CFMIP", - "ui_label": "Cloud Feedback Model Intercomparison Project ", - "description": "CFMIP experiments focus on cloud feedbacks and their role in climate, including abrupt-0p5CO2 and amip-piForcing simulations.", - "url": "https://gmd.copernicus.org/articles/10/359/2017/gmd-10-359-2017.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "cfmip" -} diff --git a/activity/cmip.json b/activity/cmip.json deleted file mode 100644 index 5da27c34..00000000 --- a/activity/cmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CMIP", - "ui_label": "", - "description": "CMIP DECK: 1pctCO2, abrupt-4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", - "url": "https://gmd.copernicus.org/articles/9/1937/2016/gmd-9-1937-2016.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "cmip" -} diff --git a/activity/cordex.json b/activity/cordex.json deleted file mode 100644 index 2e1247e7..00000000 --- a/activity/cordex.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CORDEX", - "ui_label": "Coordinated Regional Climate Downscaling Experiment", - "description": "", - "url": "https://cordex.org", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "cordex" -} diff --git a/activity/damip.json b/activity/damip.json deleted file mode 100644 index 11af5038..00000000 --- a/activity/damip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "DAMIP", - "ui_label": "Detection and Attribution Model Intercomparison Project", - "description": "DAMIP focuses on detection and attribution of climate change, covering experiments like hist-aer and hist-nat.", - "url": "https://gmd.copernicus.org/articles/13/7947/2020/gmd-13-7947-2020.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "damip" -} diff --git a/activity/dcpp.json b/activity/dcpp.json deleted file mode 100644 index da4f98c5..00000000 --- a/activity/dcpp.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "DCPP", - "ui_label": "Decadal Climate Prediction Project", - "description": "DCPP focuses on decadal climate predictions and initialized experiments like prediction for 2025-2036.", - "url": "https://gmd.copernicus.org/articles/9/3751/2016/gmd-9-3751-2016.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "dcpp" -} diff --git a/activity/del.ipynb b/activity/del.ipynb deleted file mode 100644 index a78bf43d..00000000 --- a/activity/del.ipynb +++ /dev/null @@ -1,93 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import json" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "data = pd.read_csv('~/Downloads/activities.csv')\n", - "data.head()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "for i,d in data.iterrows():\n", - " acronym = d['MIP acronym/identifier'].replace('_','-')\n", - " id = acronym.lower()\n", - " \n", - " if '/' in id: continue\n", - " \n", - " try:\n", - " update = json.load(open(f'{id}.json'))\n", - " except:\n", - " update = {\"description\": \"\"}\n", - " \n", - " if isinstance(d['MIP website'], str):\n", - " url = d['MIP website'].split(' ')[0]\n", - " else:\n", - " url = \"\"\n", - " \n", - " new = {\n", - " \"@context\": \"_context_\",\n", - " \"id\": id,\n", - " \"type\": [\n", - " \"wcrp:activity\",\n", - " \"universal\"\n", - " ],\n", - " \"url\": url,\n", - " \"label\": acronym,\n", - " \"ui-label\": d['MIP long name'],\n", - " }\n", - " \n", - " new.update(update)\n", - " \n", - " print(json.dumps(new, indent=2))\n", - " with open(f'{id}.json', 'w') as f:\n", - " json.dump(new, f, indent=2)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "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.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/activity/firemip.json b/activity/firemip.json deleted file mode 100644 index 6c862f14..00000000 --- a/activity/firemip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "FireMIP", - "ui_label": "Fire Modeling Intercomparison Project", - "description": "", - "url": "https://www.senckenberg.de/en/institutes/sbik-f/quantitative-biogeography/qb-projects/firemip/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "firemip" -} diff --git a/activity/fishmip.json b/activity/fishmip.json deleted file mode 100644 index eea9ea15..00000000 --- a/activity/fishmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "FishMIP", - "ui_label": "Fisheries and Marine Ecosystem Model Intercomparison Project", - "description": "", - "url": "https://fishmip.org/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "fishmip" -} diff --git a/activity/geomip.json b/activity/geomip.json deleted file mode 100644 index 310ce27c..00000000 --- a/activity/geomip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "GeoMIP", - "ui_label": "Geoengineering Model Intercomparison Project", - "description": "GeoMIP explores the potential impacts and side-effects of geoengineering, including experiments like G7-1.5K-SAI.", - "url": "https://gmd.copernicus.org/articles/8/989/2015/gmd-8-989-2015.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "geomip" -} diff --git a/activity/highresmip.json b/activity/highresmip.json deleted file mode 100644 index d790da18..00000000 --- a/activity/highresmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "HighResMIP", - "ui_label": "High Resolution Model Intercomparison Project", - "description": "", - "url": "https://www.highresmip.org", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "highresmip" -} diff --git a/activity/irrmip.json b/activity/irrmip.json deleted file mode 100644 index b940fdce..00000000 --- a/activity/irrmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "IRRMIP", - "ui_label": "Irrigation Model Intercomparison Project", - "description": "", - "url": "https://hydr.vub.be/projects/irrmip", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "irrmip" -} diff --git a/activity/ismip7.json b/activity/ismip7.json deleted file mode 100644 index e4930ae5..00000000 --- a/activity/ismip7.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "ISMIP7", - "ui_label": "Ice Sheet Model Intercomparison Project for CMIP", - "description": "", - "url": "https://theghub.org/groups/ismip6/wiki", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "ismip7" -} diff --git a/activity/lesfmip.json b/activity/lesfmip.json deleted file mode 100644 index 2fabe940..00000000 --- a/activity/lesfmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "LESFMIP", - "ui_label": "", - "description": "The Large Ensemble Single Forcing Model Intercomparison Project", - "url": "https://www.frontiersin.org/articles/10.3389/fclim.2022.955414/full", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "lesfmip" -} diff --git a/activity/lmip.json b/activity/lmip.json deleted file mode 100644 index 7f084d8b..00000000 --- a/activity/lmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "LMIP", - "ui_label": "Land Model Intercomparison Project", - "description": "LMIP explores land-atmosphere interactions and processes, with experiments like land-hist.", - "url": "https://gmd.copernicus.org/articles/10/3977/2017/gmd-10-3977-2017.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "lmip" -} diff --git a/activity/longrunmip.json b/activity/longrunmip.json deleted file mode 100644 index 10e3d312..00000000 --- a/activity/longrunmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "LongRunMIP", - "ui_label": "LongRunMIP", - "description": "", - "url": "https://www.longrunmip.org/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "longrunmip" -} diff --git a/activity/lumip.json b/activity/lumip.json deleted file mode 100644 index 63bc53eb..00000000 --- a/activity/lumip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "LUMIP", - "ui_label": "Land-Use Model Intercomparison Project", - "description": "", - "url": "https://www.cesm.ucar.edu/projects/cmip6/lumip", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "lumip" -} diff --git a/activity/methanemip.json b/activity/methanemip.json deleted file mode 100644 index abad7447..00000000 --- a/activity/methanemip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "MethaneMIP", - "ui_label": "MethaneMIP: Investigating the near-term climate benefits of methane mitigation", - "description": "", - "url": "tba", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "methanemip" -} diff --git a/activity/misomip2.json b/activity/misomip2.json deleted file mode 100644 index db6c725c..00000000 --- a/activity/misomip2.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "MISOMIP2", - "ui_label": "Marine Ice Sheet-Ocean Model Intercomparions Project", - "description": "", - "url": "https://misomip.github.io/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "misomip2" -} diff --git a/activity/mumip.json b/activity/mumip.json deleted file mode 100644 index c470336c..00000000 --- a/activity/mumip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "MUMIP", - "ui_label": "Model Uncertainty Model Intercomparison Project", - "description": "", - "url": "https://mumip.web.ox.ac.uk", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "mumip" -} diff --git a/activity/nahosmip.json b/activity/nahosmip.json deleted file mode 100644 index f1c60318..00000000 --- a/activity/nahosmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "NAHosMIP", - "ui_label": "North Atlantic Hosing Model Intercomparison Project", - "description": "", - "url": "https://www.tipes.dk/na-hosing-mip/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "nahosmip" -} diff --git a/activity/none.json b/activity/none.json deleted file mode 100644 index 0dbc704a..00000000 --- a/activity/none.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "none", - "ui_label": "", - "description": "'none' entry permissable only for the experiment parent id. ", - "url": "", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "none" -} diff --git a/activity/omip.json b/activity/omip.json deleted file mode 100644 index 949be0b4..00000000 --- a/activity/omip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "OMIP", - "ui_label": "Ocean Model Intercomparison Project", - "description": "", - "url": "https://OceanMIP.github.io", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "omip" -} diff --git a/activity/pmip.json b/activity/pmip.json deleted file mode 100644 index 81a2334f..00000000 --- a/activity/pmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "PMIP", - "ui_label": "Paleoclimate Modelling Intercomparison Project", - "description": "PMIP focuses on past climate variability, with experiments like LIGabrupt.", - "url": "https://gmd.copernicus.org/articles/9/3461/2016/gmd-9-3461-2016.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "pmip" -} diff --git a/activity/ppemip.json b/activity/ppemip.json deleted file mode 100644 index eba56882..00000000 --- a/activity/ppemip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "PPEMIP", - "ui_label": "Perturbed Parameter Ensemble Model Inter-comparaison Project", - "description": "", - "url": "To", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "ppemip" -} diff --git a/activity/ramip .json b/activity/ramip .json deleted file mode 100644 index cc240d29..00000000 --- a/activity/ramip .json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "RAMIP ", - "ui_label": "Regional Aerosol Model Intercomparison Project", - "description": "", - "url": "https://ramip.uk/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "ramip " -} diff --git a/activity/ramip.json b/activity/ramip.json deleted file mode 100644 index 61d41983..00000000 --- a/activity/ramip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "RAMIP", - "ui_label": "", - "description": "Regional Aerosol Model Intercomparison Project", - "url": "https://ramip.ncas.ac.uk", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "ramip" -} diff --git a/activity/rfmip.json b/activity/rfmip.json deleted file mode 100644 index 7415a67e..00000000 --- a/activity/rfmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "RFMIP", - "ui_label": "Radiative Forcing Model Intercomparison Project", - "description": "RFMIP assesses the radiative forcing of climate change with experiments such as piClim-aer, piClim-histaer, and piClim-histall.", - "url": "https://gmd.copernicus.org/articles/13/169/2020/gmd-13-169-2020.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "rfmip" -} diff --git a/activity/scenariomip.json b/activity/scenariomip.json deleted file mode 100644 index 67c5a61a..00000000 --- a/activity/scenariomip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "ScenarioMIP", - "ui_label": "", - "description": "ScenarioMIP focuses on future climate projections based on different socio-economic pathways, including High, Medium, and Very Low scenarios.", - "url": "https://gmd.copernicus.org/articles/12/1443/2019/gmd-12-1443-2019.pdf", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "scenariomip" -} diff --git a/activity/simip.json b/activity/simip.json deleted file mode 100644 index 3f2e3bbd..00000000 --- a/activity/simip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "SIMIP", - "ui_label": "Sea Ice Model Intercomparison Project", - "description": "", - "url": "https://climate-cryosphere.org/simip-about/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "simip" -} diff --git a/activity/sofiamip.json b/activity/sofiamip.json deleted file mode 100644 index 141c454a..00000000 --- a/activity/sofiamip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "SOFIAMIP", - "ui_label": "Southern Ocean Freshwater Input from Antarctica Model Intercomparison Project", - "description": "", - "url": "https://sofiamip.github.io/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "sofiamip" -} diff --git a/activity/sp-mip.json b/activity/sp-mip.json deleted file mode 100644 index 5c0b03cd..00000000 --- a/activity/sp-mip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "SP-MIP", - "ui_label": "Soil Parameter Model Intercomparison Project", - "description": "", - "url": "", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "sp-mip" -} diff --git a/activity/tbimip.json b/activity/tbimip.json deleted file mode 100644 index 39f1e05e..00000000 --- a/activity/tbimip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "TBIMIP", - "ui_label": "Tropical Basin Interaction Model Intercomparison Project", - "description": "", - "url": "https://www.clivar.org/research-foci/basin-interaction", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "tbimip" -} diff --git a/activity/tipmip.json b/activity/tipmip.json deleted file mode 100644 index 3efed911..00000000 --- a/activity/tipmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "TIPMIP", - "ui_label": "Tipping Point Modelling Intercomparison Project", - "description": "TIPMIP is an international model intercomparison project that aims to systematically advance our understanding of tipping dynamics in various Earth system components, and assess the associated uncertainties. By connecting and evaluating various models, TIPMIP will fill critical knowledge gaps in Earth system and climate modelling by improving the assessment of overall anthropogenic forcing and long-term commitments (irreversibilities). It will furthermore foster interdisciplinary knowledge transfer and shed light on critical processes currently underrepresented in Earth-system models and analysis. In doing so, it will inform relevant policy- and decision makers regarding tipping boundaries in the Earth system.", - "url": "https://tipmip.pik-potsdam.de/", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "tipmip" -} diff --git a/activity/volmip.json b/activity/volmip.json deleted file mode 100644 index 73a0789d..00000000 --- a/activity/volmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "VolMIP", - "ui_label": "Model Intercomparison Project on the climate response to Volcanic forcing", - "description": "", - "url": "www.volmip.org", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "volmip" -} diff --git a/activity/whatifmip.json b/activity/whatifmip.json deleted file mode 100644 index 3c017425..00000000 --- a/activity/whatifmip.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "WhatIfMIP", - "ui_label": "What If Modeling Intercomparison Project", - "description": "", - "url": "In", - "@context": "_context", - "@type": [ - "wcrp:activity", - "esgvoc:Activity", - "universal", - "constants" - ], - "@id": "whatifmip" -} diff --git a/archive_id/_context b/archive_id/_context deleted file mode 100644 index 05d2317a..00000000 --- a/archive_id/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/archive_id/", - "@base": "https://constants.mipcvs.dev/archive_id/", - "@esgvoc": "ArchiveId", - "@vocab": "https://constants.mipcvs.dev/docs/contents/ArchiveId/" - } -} \ No newline at end of file diff --git a/archive_id/wcrp.json b/archive_id/wcrp.json deleted file mode 100644 index 96990a0f..00000000 --- a/archive_id/wcrp.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "WCRP", - "ui_label": "", - "description": "A collection of datasets from the AMIP and CMIP project phases, along with project supporting datasets from the input4MIPs (forcing datasets used to drive CMIP simulations) and obs4MIPs (observational datasets used to evaluate CMIP simulations, and numerous other supporting activities", - "url": "https://www.wcrp-climate.org/", - "@context": "_context", - "@type": [ - "wcrp:archive_id", - "esgvoc:ArchiveId", - "universal", - "constants" - ], - "@id": "wcrp" -} diff --git a/license/README.md b/license/README.md deleted file mode 100644 index 726d8a8e..00000000 --- a/license/README.md +++ /dev/null @@ -1,96 +0,0 @@ - - -
- -# License (universal) - - - -## Description -Defines the licensing terms and conditions under which climate model data and documentation are made available for use and distribution. - -[View in HTML](https://wcrp-cmip.github.io/WCRP-universe/license/license) - -
- - - -
- - -| Item | Reference | -| --- | --- | -| Type | `wrcp:license` | -| Pydantic class | [`license`](https://github.com/ESGF/esgf-vocab/blob/main/src/esgvoc/api/data_descriptors/license.py): License | -| | | -| JSON-LD | `universal:license` | -| Expanded reference link | [https://wcrp-cmip.github.io/WCRP-universe/license](https://wcrp-cmip.github.io/WCRP-universe/license) | -| Developer Repo | [![Open in GitHub](https://img.shields.io/badge/Open-GitHub-blue?logo=github&style=flat-square)](https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/license) | - - -
- No external links found. -
- -## Content Schema - -- **`id`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`drs_name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`kind`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`license`** (**str | None**) - << No description in pydantic model (see esgvoc) >> -- **`url`** (**str | None**) - << No description in pydantic model (see esgvoc) >> -- **`type`** (**str**) - << No description in pydantic model (see esgvoc) >> - - - - - -
- -
- -## Usage - -### Online Viewer -To view a file in a browser use the content link with `.json` appended. -eg. https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/license/cc-by-4.0.json - -### Getting a File. - -A short example of how to integrate the computed ld file into your code. - -```python - -import cmipld -cmipld.get( "universal:license/cc-by-4.0") - -``` - -### Framing -Framing is a way we can filter the downloaded data to match what we want. -```js -frame = { - "@context": "https://wcrp-cmip.github.io/WCRP-universe/license/_context_", - "@type": "wcrp:license", - "keys we want": "", - "@explicit": True - - } - -``` - -```python - -import cmipld -cmipld.frame( "universal:license/cc-by-4.0" , frame) - -``` -
- - \ No newline at end of file diff --git a/license/_context b/license/_context deleted file mode 100644 index 26d880ce..00000000 --- a/license/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/license/", - "@base": "https://constants.mipcvs.dev/license/", - "@esgvoc": "License", - "@vocab": "https://constants.mipcvs.dev/docs/contents/License/" - } -} \ No newline at end of file diff --git a/license/cc-by-4.0.json b/license/cc-by-4.0.json deleted file mode 100644 index 6d65db53..00000000 --- a/license/cc-by-4.0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CC BY 4.0", - "ui_label": "Creative Commons Attribution 4.0 International", - "description": "", - "url": "https://creativecommons.org/licenses/by/4.0/", - "@context": "_context", - "@type": [ - "wcrp:license", - "esgvoc:License", - "universal", - "constants" - ], - "@id": "cc-by-4.0" -} diff --git a/license/cc-by-nc-sa-4.0.json b/license/cc-by-nc-sa-4.0.json deleted file mode 100644 index 17943bdc..00000000 --- a/license/cc-by-nc-sa-4.0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CC BY-NC-SA 4.0", - "ui_label": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International", - "description": "", - "url": "https://creativecommons.org/licenses/by-nc-sa/4.0/", - "@context": "_context", - "@type": [ - "wcrp:license", - "esgvoc:License", - "universal", - "constants" - ], - "@id": "cc-by-nc-sa-4.0" -} diff --git a/license/cc-by-sa-4.0.json b/license/cc-by-sa-4.0.json deleted file mode 100644 index 91058fe1..00000000 --- a/license/cc-by-sa-4.0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CC BY-SA 4.0", - "ui_label": "Creative Commons Attribution-ShareAlike 4.0 International", - "description": "", - "url": "https://creativecommons.org/licenses/by-sa/4.0/", - "@context": "_context", - "@type": [ - "wcrp:license", - "esgvoc:License", - "universal", - "constants" - ], - "@id": "cc-by-sa-4.0" -} diff --git a/license/cc0-1.0.json b/license/cc0-1.0.json deleted file mode 100644 index 31d60069..00000000 --- a/license/cc0-1.0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "validation_key": "CC0 1.0", - "ui_label": "Creative Commons CC0 1.0 Universal Public Domain Dedication", - "description": "", - "url": "https://creativecommons.org/publicdomain/zero/1.0/", - "@context": "_context", - "@type": [ - "wcrp:license", - "esgvoc:License", - "universal", - "constants" - ], - "@id": "cc0-1.0" -} diff --git a/mip/README.md b/mip/README.md deleted file mode 100644 index c73811ca..00000000 --- a/mip/README.md +++ /dev/null @@ -1,111 +0,0 @@ - - -
- -# Mip (universal) - - - -## Description -Identifies Model Intercomparison Projects (MIPs) that coordinate and define specific climate modeling experiments and data requirements within the CMIP framework. - -[View in HTML](https://wcrp-cmip.github.io/WCRP-universe/mip/mip) - -
- - - -
- - -| Item | Reference | -| --- | --- | -| Type | `wrcp:mip` | -| Pydantic class | [`False`](https://github.com/ESGF/esgf-vocab/blob/main/src/esgvoc/api/data_descriptors/False.py): Not yet implemented | -| | | -| JSON-LD | `universal:mip` | -| Expanded reference link | [https://wcrp-cmip.github.io/WCRP-universe/mip](https://wcrp-cmip.github.io/WCRP-universe/mip) | -| Developer Repo | [![Open in GitHub](https://img.shields.io/badge/Open-GitHub-blue?logo=github&style=flat-square)](https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/mip) | - - -
- No external links found. -
- -## Content Schema - -- **`id`** - [**unknown**] - No Pydantic model found. -- **`validation-key`** - [**unknown**] - No Pydantic model found. -- **`ui-label`** - [**unknown**] - No Pydantic model found. -- **`description`** - [**unknown**] - No Pydantic model found. -- **`end`** - [**unknown**] - No Pydantic model found. -- **`start`** - [**unknown**] - No Pydantic model found. -- **`url`** - [**unknown**] - No Pydantic model found. -- **`@context`** - [**unknown**] - No Pydantic model found. -- **`type`** - [**unknown**] - No Pydantic model found. - - - - - -
- -
- -## Usage - -### Online Viewer -To view a file in a browser use the content link with `.json` appended. -eg. https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/mip/cmip5.json - -### Getting a File. - -A short example of how to integrate the computed ld file into your code. - -```python - -import cmipld -cmipld.get( "universal:mip/cmip5") - -``` - -### Framing -Framing is a way we can filter the downloaded data to match what we want. -```js -frame = { - "@context": "https://wcrp-cmip.github.io/WCRP-universe/mip/_context_", - "@type": "wcrp:mip", - "keys we want": "", - "@explicit": True - - } - -``` - -```python - -import cmipld -cmipld.frame( "universal:mip/cmip5" , frame) - -``` -
- - \ No newline at end of file diff --git a/mip/_context b/mip/_context deleted file mode 100644 index 9db196a9..00000000 --- a/mip/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/mip/", - "@base": "https://constants.mipcvs.dev/mip/", - "@esgvoc": "Mip", - "@vocab": "https://constants.mipcvs.dev/docs/contents/Mip/" - } -} \ No newline at end of file diff --git a/mip/cmip5.json b/mip/cmip5.json deleted file mode 100644 index 91eb951d..00000000 --- a/mip/cmip5.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "validation_key": "CMIP5", - "ui_label": "", - "description": "", - "end": 2020, - "start": 2006, - "url": "https://wcrp-cmip.org/CMIP5", - "@context": "_context", - "@type": [ - "wcrp:mip", - "esgvoc:Mip", - "universal", - "constants" - ], - "@id": "cmip5" -} diff --git a/mip/cmip6.json b/mip/cmip6.json deleted file mode 100644 index 77ac6c90..00000000 --- a/mip/cmip6.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "validation_key": "CMIP6", - "ui_label": "", - "description": "", - "end": 2024, - "start": 2013, - "url": "https://wcrp-cmip.org/CMIP6", - "@context": "_context", - "@type": [ - "wcrp:mip", - "esgvoc:Mip", - "universal", - "constants" - ], - "@id": "cmip6" -} diff --git a/mip/cmip6plus.json b/mip/cmip6plus.json deleted file mode 100644 index 511d4d89..00000000 --- a/mip/cmip6plus.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "validation_key": "CMIP6Plus", - "ui_label": "", - "description": "", - "end": 2999, - "start": 2023, - "url": "https://wcrp-cmip.org/CMIP6Plus", - "@context": "_context", - "@type": [ - "wcrp:mip", - "esgvoc:Mip", - "universal", - "constants" - ], - "@id": "cmip6plus" -} diff --git a/mip/cmip7.json b/mip/cmip7.json deleted file mode 100644 index 576ab755..00000000 --- a/mip/cmip7.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "validation_key": "CMIP7", - "ui_label": "", - "description": "", - "end": 2999, - "start": 2025, - "url": "https://wcrp-cmip.org/CMIP7", - "@context": "_context", - "@type": [ - "wcrp:mip", - "esgvoc:Mip", - "universal", - "constants" - ], - "@id": "cmip7" -} diff --git a/organisation/README.md b/organisation/README.md deleted file mode 100644 index 3da49d5c..00000000 --- a/organisation/README.md +++ /dev/null @@ -1,90 +0,0 @@ - - -
- -# Organisation (universal) - - - -## Description -Identifies the institutions or organizations responsible for developing and maintaining climate models, providing attribution and contact information. - -[View in HTML](https://wcrp-cmip.github.io/WCRP-universe/organisation/organisation) - -
- - - -
- - -| Item | Reference | -| --- | --- | -| Type | `wrcp:organisation` | -| Pydantic class | [`organisation`](https://github.com/ESGF/esgf-vocab/blob/main/src/esgvoc/api/data_descriptors/organisation.py): Organisation | -| | | -| JSON-LD | `universal:organisation` | -| Expanded reference link | [https://wcrp-cmip.github.io/WCRP-universe/organisation](https://wcrp-cmip.github.io/WCRP-universe/organisation) | -| Developer Repo | [![Open in GitHub](https://img.shields.io/badge/Open-GitHub-blue?logo=github&style=flat-square)](https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/organisation) | - - -
- No external links found. -
- -## Content Schema - -- **`id`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`drs_name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`type`** (**str**) - << No description in pydantic model (see esgvoc) >> - - - - - -
- -
- -## Usage - -### Online Viewer -To view a file in a browser use the content link with `.json` appended. -eg. https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/organisation/aer.json - -### Getting a File. - -A short example of how to integrate the computed ld file into your code. - -```python - -import cmipld -cmipld.get( "universal:organisation/aer") - -``` - -### Framing -Framing is a way we can filter the downloaded data to match what we want. -```js -frame = { - "@context": "https://wcrp-cmip.github.io/WCRP-universe/organisation/_context_", - "@type": "wcrp:organisation", - "keys we want": "", - "@explicit": True - - } - -``` - -```python - -import cmipld -cmipld.frame( "universal:organisation/aer" , frame) - -``` -
- - \ No newline at end of file diff --git a/organisation/_context b/organisation/_context deleted file mode 100644 index 0e42846e..00000000 --- a/organisation/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/organisation/", - "@base": "https://constants.mipcvs.dev/organisation/", - "@esgvoc": "Organisation", - "@vocab": "https://constants.mipcvs.dev/docs/contents/Organisation/" - } -} \ No newline at end of file diff --git a/organisation/access-nri.json b/organisation/access-nri.json deleted file mode 100644 index 705f195a..00000000 --- a/organisation/access-nri.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "ACCESS-NRI", - "ui_label": "Australia's Climate Simulator", - "description": "", - "acronyms": [ - "ACCESS-NRI" - ], - "aliases": [ - "Australian Community Climate and Earth System Simulator", - "Australian Earth-System Simulator" - ], - "established": 2021, - "kind": "facility", - "labels": [ - "Australia's Climate Simulator" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "ACT", - "country_subdivision_name": "Australian Capital Territory", - "lat": -35.28346, - "lng": 149.12807, - "name": "Canberra", - "@type": "wcrp:location", - "@id": "universal:location/03qhv9c02" - } - ], - "ror": "03qhv9c02", - "url": [ - "https://www.access-nri.org.au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "access-nri" -} diff --git a/organisation/acmad.json b/organisation/acmad.json deleted file mode 100644 index a12fa61a..00000000 --- a/organisation/acmad.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ACMAD", - "ui_label": "African Center of Meteorological Application for Development", - "description": "", - "acronyms": [ - "ACMAD" - ], - "aliases": [], - "established": 1987, - "kind": "other", - "labels": [ - "African Center of Meteorological Application for Development" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "NE", - "country_name": "Niger", - "country_subdivision_code": "8", - "country_subdivision_name": "Niamey", - "lat": 13.51366, - "lng": 2.1098, - "name": "Niamey", - "@type": "wcrp:location", - "@id": "universal:location/03777v328" - } - ], - "ror": "03777v328", - "url": [ - "http://www.acmad.net/", - "https://en.wikipedia.org/wiki/African_Centre_of_Meteorological_Application_for_Development" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "acmad" -} diff --git a/organisation/aemet.json b/organisation/aemet.json deleted file mode 100644 index 94db546a..00000000 --- a/organisation/aemet.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "AEMET", - "ui_label": "Agencia Estatal de Meteorología", - "description": "", - "acronyms": [ - "AEMET" - ], - "aliases": [], - "established": 1887, - "kind": "funder", - "labels": [ - "Agencia Estatal de Meteorología", - "Agència Estatal de Meteorologia", - "Instituto Central Meteorológico", - "Meteorologiako Estatu Agentzia", - "State Meteorological Agency" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "MD", - "country_subdivision_name": "Madrid", - "lat": 40.4165, - "lng": -3.70256, - "name": "Madrid", - "@type": "wcrp:location", - "@id": "universal:location/04kxf1r09" - } - ], - "ror": "04kxf1r09", - "url": [ - "http://www.aemet.es/en/portada", - "https://en.wikipedia.org/wiki/Agencia_Estatal_de_Meteorolog%C3%ADa" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "aemet" -} diff --git a/organisation/aer.json b/organisation/aer.json deleted file mode 100644 index b2874af5..00000000 --- a/organisation/aer.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "AER", - "ui_label": "Atmospheric and Environmental Research", - "description": "", - "acronyms": [ - "AER" - ], - "aliases": [], - "established": 1977, - "kind": "facility", - "labels": [ - "Atmospheric and Environmental Research" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MA", - "country_subdivision_name": "Massachusetts", - "lat": 42.44732, - "lng": -71.2245, - "name": "Lexington", - "@type": "wcrp:location", - "@id": "universal:location/04cg70g73" - } - ], - "ror": "04cg70g73", - "url": [ - "http://www.aer.com/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "aer" -} diff --git a/organisation/amap.json b/organisation/amap.json deleted file mode 100644 index 11033884..00000000 --- a/organisation/amap.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "AMAP", - "ui_label": "Arctic Monitoring And Assessment Programme", - "description": "", - "acronyms": [ - "AMAP" - ], - "aliases": [], - "established": 1991, - "kind": "other", - "labels": [ - "Arctic Monitoring And Assessment Programme" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "03", - "country_subdivision_name": "Oslo", - "lat": 59.91273, - "lng": 10.74609, - "name": "Oslo", - "@type": "wcrp:location", - "@id": "universal:location/00hgq1a05" - } - ], - "ror": "00hgq1a05", - "url": [ - "http://www.amap.no/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "amap" -} diff --git a/organisation/anl.json b/organisation/anl.json deleted file mode 100644 index 679447d2..00000000 --- a/organisation/anl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "ANL", - "ui_label": "Argonne National Laboratory", - "description": "", - "acronyms": [ - "ANL" - ], - "aliases": [ - "United States Department of Energy Office of Science Argonne National Laboratory" - ], - "established": 1946, - "kind": "facility", - "labels": [ - "Argonne National Laboratory", - "Laboratorio Nacional Argonne" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "IL", - "country_subdivision_name": "Illinois", - "lat": 41.67364, - "lng": -88.00173, - "name": "Lemont", - "@type": "wcrp:location", - "@id": "universal:location/05gvnxz63" - } - ], - "ror": "05gvnxz63", - "url": [ - "https://www.anl.gov", - "http://en.wikipedia.org/wiki/Argonne_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "anl" -} diff --git a/organisation/anu.json b/organisation/anu.json deleted file mode 100644 index cb6e5f75..00000000 --- a/organisation/anu.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ANU", - "ui_label": "Australian National University", - "description": "", - "acronyms": [ - "ANU" - ], - "aliases": [], - "established": 1946, - "kind": "education", - "labels": [ - "Australian National University" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "ACT", - "country_subdivision_name": "Australian Capital Territory", - "lat": -35.28346, - "lng": 149.12807, - "name": "Canberra", - "@type": "wcrp:location", - "@id": "universal:location/019wvm592" - } - ], - "ror": "019wvm592", - "url": [ - "https://www.anu.edu.au", - "http://en.wikipedia.org/wiki/Australian_National_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "anu" -} diff --git a/organisation/aor.json b/organisation/aor.json deleted file mode 100644 index 425a18f6..00000000 --- a/organisation/aor.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "AoR", - "ui_label": "Astronomical Observatory of Rome", - "description": "", - "acronyms": [ - "INAF-OAR", - "OAR" - ], - "aliases": [], - "established": 1938, - "kind": "Facility", - "labels": [ - "Osservatorio Astronomico di Roma" - ], - "location": { - "city": "Rome", - "country": [ - "Italy", - "IT" - ], - "lat": 41.89193, - "lon": 12.51133, - "@type": "esgf:location", - "@id": "universal:location/02hnp4676" - }, - "ror": "02hnp4676", - "url": [ - "https://www.oa-roma.inaf.it" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "aor" -} diff --git a/organisation/aori.json b/organisation/aori.json deleted file mode 100644 index 47ef77f8..00000000 --- a/organisation/aori.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "AORI", - "ui_label": "Ocean Atmosphere Systems (Germany)", - "description": "", - "acronyms": [], - "aliases": [], - "established": null, - "kind": "company", - "labels": [ - "Ocean Atmosphere Systems (Germany)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/01x2g0m45" - } - ], - "ror": "01x2g0m45", - "url": [ - "https://oasys-research.com/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "aori" -} diff --git a/organisation/apcc.json b/organisation/apcc.json deleted file mode 100644 index 1347729b..00000000 --- a/organisation/apcc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "APCC", - "ui_label": "APEC Climate Center", - "description": "", - "acronyms": [ - "APCC" - ], - "aliases": [], - "established": 2005, - "kind": "government", - "labels": [ - "APEC Climate Center" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "26", - "country_subdivision_name": "Busan", - "lat": 35.10168, - "lng": 129.03004, - "name": "Busan", - "@type": "wcrp:location", - "@id": "universal:location/03zqv5j63" - } - ], - "ror": "03zqv5j63", - "url": [ - "https://apcc21.org/", - "https://en.wikipedia.org/wiki/APEC_Climate_Center" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "apcc" -} diff --git a/organisation/arccss.json b/organisation/arccss.json deleted file mode 100644 index a9765c57..00000000 --- a/organisation/arccss.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "ARCCSS", - "ui_label": "ARC Centre for Nanoscale BioPhotonics", - "description": "", - "acronyms": [ - "CNBP" - ], - "aliases": [ - "ARC Centre of Excellence for Nanoscale BioPhotonics", - "Australian Research Council Centre of Excellence for Nanoscale BioPhotonics" - ], - "established": null, - "kind": "facility", - "labels": [ - "ARC Centre for Nanoscale BioPhotonics" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "SA", - "country_subdivision_name": "South Australia", - "lat": -34.92866, - "lng": 138.59863, - "name": "Adelaide", - "@type": "wcrp:location", - "@id": "universal:location/00g76w893" - } - ], - "ror": "00g76w893", - "url": [ - "https://cnbplegacy.org.au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "arccss" -} diff --git a/organisation/as-rcec.json b/organisation/as-rcec.json deleted file mode 100644 index cf0abcba..00000000 --- a/organisation/as-rcec.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "AS-RCEC", - "ui_label": "Research Center for Environmental Changes, Academia Sinica", - "description": "", - "acronyms": [ - "RCEC" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Research Center for Environmental Changes, Academia Sinica", - "環境變遷研究中心" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "TW", - "country_name": "Taiwan", - "country_subdivision_code": null, - "country_subdivision_name": "Taiwan", - "lat": 25.05306, - "lng": 121.52639, - "name": "Taipei", - "@type": "wcrp:location", - "@id": "universal:location/050qpg053" - } - ], - "ror": "050qpg053", - "url": [ - "http://www.rcec.sinica.edu.tw/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "as-rcec" -} diff --git a/organisation/asmerc.json b/organisation/asmerc.json deleted file mode 100644 index 584096a6..00000000 --- a/organisation/asmerc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ASMERC", - "ui_label": "Research Institute of Meteorology and Atmospheric Science", - "description": "", - "acronyms": [ - "RIMAS" - ], - "aliases": [], - "established": null, - "kind": "education", - "labels": [ - "Research Institute of Meteorology and Atmospheric Science", - "پژوهشگاه هواشناسی و علوم جو" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IR", - "country_name": "Iran", - "country_subdivision_code": "23", - "country_subdivision_name": "Tehran", - "lat": 35.69439, - "lng": 51.42151, - "name": "Tehran", - "@type": "wcrp:location", - "@id": "universal:location/01j240j59" - } - ], - "ror": "01j240j59", - "url": [ - "http://www.rimas.ac.ir" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "asmerc" -} diff --git a/organisation/auot.json b/organisation/auot.json deleted file mode 100644 index ae4d556d..00000000 --- a/organisation/auot.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "AUoT", - "ui_label": "Aristotle University of Thessaloniki", - "description": "", - "acronyms": [], - "aliases": [ - "Aristotelian University" - ], - "established": 1925, - "kind": "Education", - "labels": [ - "Université aristote de thessalonique", - "Αριστοτέλειο Πανεπιστήμιο Θεσσαλονίκης" - ], - "location": { - "city": "Thessaloniki", - "country": [ - "Greece", - "GR" - ], - "lat": 40.64361, - "lon": 22.93086, - "@type": "esgf:location", - "@id": "universal:location/02j61yw88" - }, - "ror": "02j61yw88", - "url": [ - "https://www.auth.gr" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "auot" -} diff --git a/organisation/awi.json b/organisation/awi.json deleted file mode 100644 index 60d5a932..00000000 --- a/organisation/awi.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "AWI", - "ui_label": "Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung", - "description": "", - "acronyms": [ - "AWI" - ], - "aliases": [ - "Alfred Wegener Institute for Polar and Marine Research", - "Alfred-Wegener-Institut" - ], - "established": 1980, - "kind": "facility", - "labels": [ - "Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HB", - "country_subdivision_name": "Bremen", - "lat": 53.53615, - "lng": 8.59298, - "name": "Bremerhaven", - "@type": "wcrp:location", - "@id": "universal:location/032e6b942" - } - ], - "ror": "032e6b942", - "url": [ - "https://www.awi.de", - "https://en.wikipedia.org/wiki/Alfred_Wegener_Institute_for_Polar_and_Marine_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "awi" -} diff --git a/organisation/bas.json b/organisation/bas.json deleted file mode 100644 index 95fc74d6..00000000 --- a/organisation/bas.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "BAS", - "ui_label": "British Antarctic Survey", - "description": "", - "acronyms": [ - "BAS" - ], - "aliases": [], - "established": 1962, - "kind": "funder", - "labels": [ - "British Antarctic Survey" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 52.2, - "lng": 0.11667, - "name": "Cambridge", - "@type": "wcrp:location", - "@id": "universal:location/01rhff309" - } - ], - "ror": "01rhff309", - "url": [ - "https://www.bas.ac.uk/", - "https://en.wikipedia.org/wiki/British_Antarctic_Survey" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bas" -} diff --git a/organisation/bcc.json b/organisation/bcc.json deleted file mode 100644 index e08488e5..00000000 --- a/organisation/bcc.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "BCC", - "ui_label": "Beijing Climate Center", - "description": "", - "acronyms": [], - "aliases": [], - "established": 2003, - "kind": "facility", - "labels": [ - "Beijing Climate Center", - "国家气候中心" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/03kb2jw75" - } - ], - "ror": "03kb2jw75", - "url": [ - "http://bcc.ncc-cma.net" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bcc" -} diff --git a/organisation/bccr.json b/organisation/bccr.json deleted file mode 100644 index fde36236..00000000 --- a/organisation/bccr.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "BCCR", - "ui_label": "Bjerknes Centre for Climate Research", - "description": "", - "acronyms": [ - "BCCR" - ], - "aliases": [], - "established": 2000, - "kind": "facility", - "labels": [ - "Bjerknes Centre for Climate Research", - "Bjerknessenteret for klimaforskning" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "46", - "country_subdivision_name": "Vestland", - "lat": 60.39299, - "lng": 5.32415, - "name": "Bergen", - "@type": "wcrp:location", - "@id": "universal:location/011n96f14" - } - ], - "ror": "011n96f14", - "url": [ - "http://www.bjerknes.uib.no/en/", - "https://en.wikipedia.org/wiki/Bjerknes_Centre_for_Climate_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bccr" -} diff --git a/organisation/bira-iasb.json b/organisation/bira-iasb.json deleted file mode 100644 index e43e3932..00000000 --- a/organisation/bira-iasb.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "BIRA-IASB", - "ui_label": "Royal Belgian Institute for Space Aeronomy", - "description": "", - "acronyms": [ - "BIRA", - "IASB" - ], - "aliases": [], - "established": 1964, - "kind": "facility", - "labels": [ - "Koninklijk Belgisch Instituut voor Ruimte-Aeronomie", - "Königlich Belgisches Institut für Raumfahrt", - "L'Institut royal d'Aéronomie Spatiale de Belgique", - "Royal Belgian Institute for Space Aeronomy" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "BE", - "country_name": "Belgium", - "country_subdivision_code": "BRU", - "country_subdivision_name": "Brussels Capital", - "lat": 50.85045, - "lng": 4.34878, - "name": "Brussels", - "@type": "wcrp:location", - "@id": "universal:location/03vfw8w96" - } - ], - "ror": "03vfw8w96", - "url": [ - "https://aeronomie.be", - "https://en.wikipedia.org/wiki/Belgian_Institute_for_Space_Aeronomy" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bira-iasb" -} diff --git a/organisation/blackrock.json b/organisation/blackrock.json deleted file mode 100644 index d1a512b6..00000000 --- a/organisation/blackrock.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "BlackRock", - "ui_label": "BlackRock (United States)", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1988, - "kind": "company", - "labels": [ - "BlackRock (United States)" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NY", - "country_subdivision_name": "New York", - "lat": 40.71427, - "lng": -74.00597, - "name": "New York", - "@type": "wcrp:location", - "@id": "universal:location/031dc4703" - } - ], - "ror": "031dc4703", - "url": [ - "https://www.blackrock.com/", - "https://en.wikipedia.org/wiki/BlackRock" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "blackrock" -} diff --git a/organisation/bnl.json b/organisation/bnl.json deleted file mode 100644 index cf497455..00000000 --- a/organisation/bnl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "BNL", - "ui_label": "Brookhaven National Laboratory", - "description": "", - "acronyms": [ - "BNL" - ], - "aliases": [ - "Office of Science Brookhaven National Laboratory", - "United States Department of Energy Office of Science Brookhaven National Laboratory" - ], - "established": 1947, - "kind": "facility", - "labels": [ - "Brookhaven National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NY", - "country_subdivision_name": "New York", - "lat": 40.86954, - "lng": -72.88677, - "name": "Upton", - "@type": "wcrp:location", - "@id": "universal:location/02ex6cf31" - } - ], - "ror": "02ex6cf31", - "url": [ - "http://www.bnl.gov/world/", - "http://en.wikipedia.org/wiki/Brookhaven_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bnl" -} diff --git a/organisation/bnu.json b/organisation/bnu.json deleted file mode 100644 index 25bffa2c..00000000 --- a/organisation/bnu.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "BNU", - "ui_label": "Beijing Normal University", - "description": "", - "acronyms": [ - "BNU" - ], - "aliases": [ - "Běijīng Shīfàn Dàxué" - ], - "established": 1902, - "kind": "education", - "labels": [ - "Beijing Normal University", - "北京师范大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/022k4wk35" - } - ], - "ror": "022k4wk35", - "url": [ - "https://www.bnu.edu.cn", - "http://en.wikipedia.org/wiki/Beijing_Normal_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "bnu" -} diff --git a/organisation/boem.json b/organisation/boem.json deleted file mode 100644 index a3faa2e1..00000000 --- a/organisation/boem.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "BOEM", - "ui_label": "Bureau of Ocean Energy Management", - "description": "", - "acronyms": [ - "BOEM" - ], - "aliases": [], - "established": 2011, - "kind": "funder", - "labels": [ - "Bureau of Ocean Energy Management" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "DC", - "country_subdivision_name": "District of Columbia", - "lat": 38.89511, - "lng": -77.03637, - "name": "Washington", - "@type": "wcrp:location", - "@id": "universal:location/03tzscr25" - } - ], - "ror": "03tzscr25", - "url": [ - "https://www.boem.gov/", - "https://en.wikipedia.org/wiki/Bureau_of_Ocean_Energy_Management" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "boem" -} diff --git a/organisation/boku.json b/organisation/boku.json deleted file mode 100644 index 02037635..00000000 --- a/organisation/boku.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "BOKU", - "ui_label": "Academia Nacional de Agronomía y Veterinaria", - "description": "", - "acronyms": [ - "ANAV" - ], - "aliases": [], - "established": 1910, - "kind": "nonprofit", - "labels": [ - "Academia Nacional de Agronomía y Veterinaria" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "AR", - "country_name": "Argentina", - "country_subdivision_code": "C", - "country_subdivision_name": "Buenos Aires F.D.", - "lat": -34.61315, - "lng": -58.37723, - "name": "Buenos Aires", - "@type": "wcrp:location", - "@id": "universal:location/00kkbzr26" - } - ], - "ror": "00kkbzr26", - "url": [ - "https://anav.org.ar", - "https://es.wikipedia.org/wiki/Academia_Nacional_de_Agronom%C3%ADa_y_Veterinaria_de_Argentina" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "boku" -} diff --git a/organisation/c-dac.json b/organisation/c-dac.json deleted file mode 100644 index d084fcce..00000000 --- a/organisation/c-dac.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "C-DAC", - "ui_label": "Centre for Development of Advanced Computing", - "description": "", - "acronyms": [ - "C-DAC" - ], - "aliases": [], - "established": 1988, - "kind": "facility", - "labels": [ - "Centre for Development of Advanced Computing", - "सी-डॅक", - "सी-डैक", - "சிடாக்", - "സെന്റർ ഫോർ ഡെവലപ്മെന്റ് ഓഫ് അഡ്വാൻസ്ഡ് കമ്പ്യൂട്ടിങ്ങ്" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MH", - "country_subdivision_name": "Maharashtra", - "lat": 18.51957, - "lng": 73.85535, - "name": "Pune", - "@type": "wcrp:location", - "@id": "universal:location/022abst40" - } - ], - "ror": "022abst40", - "url": [ - "http://cdac.in/", - "https://en.wikipedia.org/wiki/Centre_for_Development_of_Advanced_Computing" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "c-dac" -} diff --git a/organisation/caltech.json b/organisation/caltech.json deleted file mode 100644 index 4c6f4c60..00000000 --- a/organisation/caltech.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "Caltech", - "ui_label": "California Institute of Technology", - "description": "", - "acronyms": [ - "CIT" - ], - "aliases": [ - "Caltech" - ], - "established": 1891, - "kind": "education", - "labels": [ - "California Institute of Technology", - "Instituto de Tecnología de California" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 34.14778, - "lng": -118.14452, - "name": "Pasadena", - "@type": "wcrp:location", - "@id": "universal:location/05dxps055" - } - ], - "ror": "05dxps055", - "url": [ - "https://www.caltech.edu", - "http://en.wikipedia.org/wiki/California_Institute_of_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "caltech" -} diff --git a/organisation/cams.json b/organisation/cams.json deleted file mode 100644 index c48fb349..00000000 --- a/organisation/cams.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "validation_key": "CAMS", - "ui_label": "Chinese Academy of Medical Sciences & Peking Union Medical College", - "description": "", - "acronyms": [ - "CAMS", - "CAMS&PUMC", - "PUMC" - ], - "aliases": [ - "Chinese Academy of Medical Sciences", - "Peking Union Medical College", - "中国医学科学院", - "北京协和医学院" - ], - "established": 1956, - "kind": "education", - "labels": [ - "Chinese Academy of Medical Sciences & Peking Union Medical College", - "中国医学科学院北京协和医学院" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/02drdmm93" - } - ], - "ror": "02drdmm93", - "url": [ - "http://www.cams.ac.cn/", - "https://en.wikipedia.org/wiki/Peking_Union_Medical_College" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cams" -} diff --git a/organisation/cas.json b/organisation/cas.json deleted file mode 100644 index b160c42e..00000000 --- a/organisation/cas.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "CAS", - "ui_label": "Institute of Atmospheric Physics", - "description": "", - "acronyms": [ - "IAP" - ], - "aliases": [ - "Institute of Meteorology of Academia Sinica" - ], - "established": 1928, - "kind": "facility", - "labels": [ - "Institute of Atmospheric Physics", - "中国科学院大气物理研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/0424h4e32" - } - ], - "ror": "0424h4e32", - "url": [ - "http://english.iap.cas.cn/au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cas" -} diff --git a/organisation/cccma.json b/organisation/cccma.json deleted file mode 100644 index 6397e81e..00000000 --- a/organisation/cccma.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "CCCma", - "ui_label": "Climate Modelling Laboratory", - "description": "", - "acronyms": [], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Climate Modelling Laboratory" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "QLD", - "country_subdivision_name": "Queensland", - "lat": -26.39433, - "lng": 153.0901, - "name": "Noosa", - "@type": "wcrp:location", - "@id": "universal:location/01ge8wp14" - } - ], - "ror": "01ge8wp14", - "url": [ - "https://climatelab.com.au/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cccma" -} diff --git a/organisation/cccr-iitm.json b/organisation/cccr-iitm.json deleted file mode 100644 index b2f88705..00000000 --- a/organisation/cccr-iitm.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CCCR-IITM", - "ui_label": "Indian Institute of Tropical Meteorology", - "description": "", - "acronyms": [ - "IITM" - ], - "aliases": [], - "established": 1962, - "kind": "facility", - "labels": [ - "Indian Institute of Tropical Meteorology", - "भारतीय उष्णप्रदेशीय हवामानशास्त्र संस्था" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MH", - "country_subdivision_name": "Maharashtra", - "lat": 18.51957, - "lng": 73.85535, - "name": "Pune", - "@type": "wcrp:location", - "@id": "universal:location/03jf2m686" - } - ], - "ror": "03jf2m686", - "url": [ - "http://www.tropmet.res.in/", - "https://en.wikipedia.org/wiki/Indian_Institute_of_Tropical_Meteorology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cccr-iitm" -} diff --git a/organisation/ccrs.json b/organisation/ccrs.json deleted file mode 100644 index 8ca33876..00000000 --- a/organisation/ccrs.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "CCRS", - "ui_label": "Bolin Centre for Climate Research", - "description": "", - "acronyms": [], - "aliases": [], - "established": 2006, - "kind": "facility", - "labels": [ - "Bolin Centre for Climate Research" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "SE", - "country_name": "Sweden", - "country_subdivision_code": "AB", - "country_subdivision_name": "Stockholm", - "lat": 59.32938, - "lng": 18.06871, - "name": "Stockholm", - "@type": "wcrp:location", - "@id": "universal:location/058zxsr17" - } - ], - "ror": "058zxsr17", - "url": [ - "https://www.su.se/bolin-centre-for-climate-research/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ccrs" -} diff --git a/organisation/ceda.json b/organisation/ceda.json deleted file mode 100644 index 9855b9d1..00000000 --- a/organisation/ceda.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CEDA", - "ui_label": "Centre for Environmental Data Analysis", - "description": "", - "acronyms": [ - "CEDA" - ], - "aliases": [], - "established": 2005, - "kind": "government", - "labels": [ - "Centre for Environmental Data Analysis" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 53.41667, - "lng": -0.96667, - "name": "Harwell", - "@type": "wcrp:location", - "@id": "universal:location/04j4kad11" - } - ], - "ror": "04j4kad11", - "url": [ - "https://www.ceda.ac.uk/", - "https://en.wikipedia.org/wiki/Centre_for_Environmental_Data_Analysis" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ceda" -} diff --git a/organisation/cema.json b/organisation/cema.json deleted file mode 100644 index fe3f5506..00000000 --- a/organisation/cema.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "CEMA", - "ui_label": "NOAA Environmental Modeling Center", - "description": "", - "acronyms": [ - "EMC", - "NOAA EMC" - ], - "aliases": [ - "Environmental Modeling Center", - "National Oceanic and Atmospheric Administration Environmental Modeling Center" - ], - "established": 1995, - "kind": "government", - "labels": [ - "NOAA Environmental Modeling Center" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MD", - "country_subdivision_name": "Maryland", - "lat": 38.98067, - "lng": -76.93692, - "name": "College Park", - "@type": "wcrp:location", - "@id": "universal:location/040933v44" - } - ], - "ror": "040933v44", - "url": [ - "https://www.emc.ncep.noaa.gov/emc_new.php", - "https://en.wikipedia.org/wiki/Environmental_Modeling_Center" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cema" -} diff --git a/organisation/cemc.json b/organisation/cemc.json deleted file mode 100644 index 26ef2f81..00000000 --- a/organisation/cemc.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "CEMC", - "ui_label": "Earth System Science Interdisciplinary Center", - "description": "", - "acronyms": [ - "ESSIC" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Earth System Science Interdisciplinary Center" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MD", - "country_subdivision_name": "Maryland", - "lat": 38.98067, - "lng": -76.93692, - "name": "College Park", - "@type": "wcrp:location", - "@id": "universal:location/042607708" - } - ], - "ror": "042607708", - "url": [ - "http://essic.umd.edu/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cemc" -} diff --git a/organisation/cemig.json b/organisation/cemig.json deleted file mode 100644 index d148e4f4..00000000 --- a/organisation/cemig.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CEMIG", - "ui_label": "Companhia Energética de Minas Gerais (Brazil)", - "description": "", - "acronyms": [ - "CEMIG" - ], - "aliases": [], - "established": 1952, - "kind": "company", - "labels": [ - "Companhia Energética de Minas Gerais (Brazil)" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "MG", - "country_subdivision_name": "Minas Gerais", - "lat": -19.92083, - "lng": -43.93778, - "name": "Belo Horizonte", - "@type": "wcrp:location", - "@id": "universal:location/02kbrsj34" - } - ], - "ror": "02kbrsj34", - "url": [ - "http://www.cemig.com.br/en-us/Pages/default.aspx", - "https://en.wikipedia.org/wiki/CEMIG" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cemig" -} diff --git "a/organisation/cenicaf\303\251.json" "b/organisation/cenicaf\303\251.json" deleted file mode 100644 index e0d80965..00000000 --- "a/organisation/cenicaf\303\251.json" +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CENICAFÉ", - "ui_label": "Centro Nacional de Investigaciones de Café", - "description": "", - "acronyms": [], - "aliases": [ - "Cenicafé" - ], - "established": 1938, - "kind": "funder", - "labels": [ - "Centro Nacional de Investigaciones de Café", - "National Coffee Research Center" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "CO", - "country_name": "Colombia", - "country_subdivision_code": "CAL", - "country_subdivision_name": "Caldas Department", - "lat": 5.06889, - "lng": -75.51738, - "name": "Manizales", - "@type": "wcrp:location", - "@id": "universal:location/03q60bw50" - } - ], - "ror": "03q60bw50", - "url": [ - "https://www.cenicafe.org/", - "https://fr.wikipedia.org/wiki/Centro_Nacional_de_Investigaciones_de_Caf%C3%A9" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cenicafé" -} diff --git a/organisation/cerfacs.json b/organisation/cerfacs.json deleted file mode 100644 index 97213ccc..00000000 --- a/organisation/cerfacs.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "CERFACS", - "ui_label": "Centre Européen de Recherche et de Formation Avancée en Calcul Scientifique", - "description": "", - "acronyms": [ - "CERFACS" - ], - "aliases": [], - "established": 1991, - "kind": "facility", - "labels": [ - "Centre Européen de Recherche et de Formation Avancée en Calcul Scientifique" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "OCC", - "country_subdivision_name": "Occitanie", - "lat": 43.60426, - "lng": 1.44367, - "name": "Toulouse", - "@type": "wcrp:location", - "@id": "universal:location/02dzbc556" - } - ], - "ror": "02dzbc556", - "url": [ - "http://www.cerfacs.fr/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cerfacs" -} diff --git a/organisation/cesdac.json b/organisation/cesdac.json deleted file mode 100644 index 7c5f8afb..00000000 --- a/organisation/cesdac.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CESDAC", - "ui_label": "International Sustainable Energy Development Centre", - "description": "", - "acronyms": [ - "ISEDC" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "International Sustainable Energy Development Centre", - "Международный центр устойчивого энергетического развития под эгидой ЮНЕСКО" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "RU", - "country_name": "Russia", - "country_subdivision_code": "MOW", - "country_subdivision_name": "Moscow", - "lat": 55.75222, - "lng": 37.61556, - "name": "Moscow", - "@type": "wcrp:location", - "@id": "universal:location/02q5jeq02" - } - ], - "ror": "02q5jeq02", - "url": [ - "http://www.isedc-u.com" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cesdac" -} diff --git a/organisation/cetesb.json b/organisation/cetesb.json deleted file mode 100644 index b8e2b9b6..00000000 --- a/organisation/cetesb.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "CETESB", - "ui_label": "CETESB - Companhia Ambiental do Estado de São Paulo", - "description": "", - "acronyms": [ - "CETESB" - ], - "aliases": [ - "CETESB - Compañia Ambiental del Estado de São Paulo", - "CETESB - Environmental Company of the State of São Paulo", - "CETESB - São Paulo State Environment Company", - "Companhia Ambiental do Estado de São Paulo", - "Environmental Company of the State of São Paulo", - "São Paulo State Environment Company" - ], - "established": 1968, - "kind": "funder", - "labels": [ - "CETESB - Companhia Ambiental do Estado de São Paulo" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "SP", - "country_subdivision_name": "São Paulo", - "lat": -23.5475, - "lng": -46.63611, - "name": "São Paulo", - "@type": "wcrp:location", - "@id": "universal:location/05thfhs30" - } - ], - "ror": "05thfhs30", - "url": [ - "https://cetesb.sp.gov.br", - "https://pt.wikipedia.org/wiki/Companhia_Ambiental_do_Estado_de_S%C3%A3o_Paulo" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cetesb" -} diff --git a/organisation/cgi.json b/organisation/cgi.json deleted file mode 100644 index 1cdfb576..00000000 --- a/organisation/cgi.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "CGI", - "ui_label": "Chockie Group International (United States)", - "description": "", - "acronyms": [ - "CGI" - ], - "aliases": [], - "established": 1994, - "kind": "company", - "labels": [ - "Chockie Group International (United States)" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "WA", - "country_subdivision_name": "Washington", - "lat": 47.81065, - "lng": -122.37736, - "name": "Edmonds", - "@type": "wcrp:location", - "@id": "universal:location/00804ej42" - } - ], - "ror": "00804ej42", - "url": [ - "http://www.chockiegroup.com/Home.html" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cgi" -} diff --git a/organisation/cgisc.json b/organisation/cgisc.json deleted file mode 100644 index f061c145..00000000 --- a/organisation/cgisc.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "CGISC", - "ui_label": "Global Impact", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1956, - "kind": "nonprofit", - "labels": [ - "Global Impact" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "VA", - "country_subdivision_name": "Virginia", - "lat": 38.80484, - "lng": -77.04692, - "name": "Alexandria", - "@type": "wcrp:location", - "@id": "universal:location/007z06v19" - } - ], - "ror": "007z06v19", - "url": [ - "https://charity.org", - "https://en.wikipedia.org/wiki/Global_Impact" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cgisc" -} diff --git a/organisation/ciat.json b/organisation/ciat.json deleted file mode 100644 index b0fca8e9..00000000 --- a/organisation/ciat.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CIAT", - "ui_label": "International Center for Tropical Agriculture", - "description": "", - "acronyms": [ - "CIAT" - ], - "aliases": [], - "established": 1967, - "kind": "funder", - "labels": [ - "Centro Internacional de Agricultura Tropical", - "International Center for Tropical Agriculture" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "CO", - "country_name": "Colombia", - "country_subdivision_code": "VAC", - "country_subdivision_name": "Valle del Cauca Department", - "lat": 3.43722, - "lng": -76.5225, - "name": "Santiago de Cali", - "@type": "wcrp:location", - "@id": "universal:location/037wny167" - } - ], - "ror": "037wny167", - "url": [ - "https://alliancebioversityciat.org/", - "https://en.wikipedia.org/wiki/International_Center_for_Tropical_Agriculture" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ciat" -} diff --git a/organisation/cicero.json b/organisation/cicero.json deleted file mode 100644 index 3d9fdbe3..00000000 --- a/organisation/cicero.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CICERO", - "ui_label": "CICERO Center for International Climate Research", - "description": "", - "acronyms": [ - "CICERO" - ], - "aliases": [], - "established": 1990, - "kind": "facility", - "labels": [ - "CICERO Center for International Climate Research", - "CICERO Senter for Klimaforskning" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "03", - "country_subdivision_name": "Oslo", - "lat": 59.91273, - "lng": 10.74609, - "name": "Oslo", - "@type": "wcrp:location", - "@id": "universal:location/01gw5dy53" - } - ], - "ror": "01gw5dy53", - "url": [ - "https://cicero.oslo.no", - "https://en.wikipedia.org/wiki/Centre_for_International_Climate_and_Environmental_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cicero" -} diff --git a/organisation/cicese.json b/organisation/cicese.json deleted file mode 100644 index ae972009..00000000 --- a/organisation/cicese.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CICESE", - "ui_label": "Centro de Investigación Científica y de Educación Superior de Ensenada", - "description": "", - "acronyms": [ - "CICESE" - ], - "aliases": [], - "established": 1973, - "kind": "facility", - "labels": [ - "Center for Scientific Research and Higher Education at Ensenada", - "Centro de Investigación Científica y de Educación Superior de Ensenada" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "MX", - "country_name": "Mexico", - "country_subdivision_code": "BCN", - "country_subdivision_name": "Baja California", - "lat": 31.87149, - "lng": -116.60071, - "name": "Ensenada", - "@type": "wcrp:location", - "@id": "universal:location/04znhwb73" - } - ], - "ror": "04znhwb73", - "url": [ - "https://cicese.edu.mx", - "https://en.wikipedia.org/wiki/Ensenada_Center_for_Scientific_Research_and_Higher_Education" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cicese" -} diff --git a/organisation/cima.json b/organisation/cima.json deleted file mode 100644 index 2423fb64..00000000 --- a/organisation/cima.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CIMA", - "ui_label": "Centro de Investigaciones y Estudios de Género", - "description": "", - "acronyms": [ - "CIEG" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Centro de Investigaciones y Estudios de Género" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "MX", - "country_name": "Mexico", - "country_subdivision_code": "CMX", - "country_subdivision_name": "Mexico City", - "lat": 19.42847, - "lng": -99.12766, - "name": "Mexico City", - "@type": "wcrp:location", - "@id": "universal:location/0193j3v20" - } - ], - "ror": "0193j3v20", - "url": [ - "https://cieg.unam.mx", - "https://es.wikipedia.org/wiki/Centro_de_Investigaciones_y_Estudios_de_G%C3%A9nero" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cima" -} diff --git a/organisation/cineca.json b/organisation/cineca.json deleted file mode 100644 index 5826b810..00000000 --- a/organisation/cineca.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "Cineca", - "ui_label": "Cineca", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1969, - "kind": "other", - "labels": [ - "Cineca" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "45", - "country_subdivision_name": "Emilia-Romagna", - "lat": 44.47563, - "lng": 11.27495, - "name": "Casalecchio di Reno", - "@type": "wcrp:location", - "@id": "universal:location/02f013h18" - } - ], - "ror": "02f013h18", - "url": [ - "http://www.cineca.it/en", - "https://en.wikipedia.org/wiki/CINECA" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cineca" -} diff --git a/organisation/clex.json b/organisation/clex.json deleted file mode 100644 index 2ad1860b..00000000 --- a/organisation/clex.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "CLEX", - "ui_label": "ARC Centre for Nanoscale BioPhotonics", - "description": "", - "acronyms": [ - "CNBP" - ], - "aliases": [ - "ARC Centre of Excellence for Nanoscale BioPhotonics", - "Australian Research Council Centre of Excellence for Nanoscale BioPhotonics" - ], - "established": null, - "kind": "facility", - "labels": [ - "ARC Centre for Nanoscale BioPhotonics" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "SA", - "country_subdivision_name": "South Australia", - "lat": -34.92866, - "lng": 138.59863, - "name": "Adelaide", - "@type": "wcrp:location", - "@id": "universal:location/00g76w893" - } - ], - "ror": "00g76w893", - "url": [ - "https://cnbplegacy.org.au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "clex" -} diff --git a/organisation/cma.json b/organisation/cma.json deleted file mode 100644 index d6c2663d..00000000 --- a/organisation/cma.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CMA", - "ui_label": "Korea Meteorological Administration", - "description": "", - "acronyms": [ - "KMA" - ], - "aliases": [], - "established": 1990, - "kind": "funder", - "labels": [ - "Korea Meteorological Administration", - "기상청" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "11", - "country_subdivision_name": "Seoul", - "lat": 37.566, - "lng": 126.9784, - "name": "Seoul", - "@type": "wcrp:location", - "@id": "universal:location/04nrmrg07" - } - ], - "ror": "04nrmrg07", - "url": [ - "https://www.kma.go.kr/kma", - "https://en.wikipedia.org/wiki/Korea_Meteorological_Administration" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cma" -} diff --git a/organisation/cmcc.json b/organisation/cmcc.json deleted file mode 100644 index de86583d..00000000 --- a/organisation/cmcc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "CMCC", - "ui_label": "CMCC Foundation - Euro-Mediterranean Center on Climate Change", - "description": "", - "acronyms": [ - "CMCC" - ], - "aliases": [ - "CMCC Foundation", - "Euro-Mediterranean Center for Climate Change", - "Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici" - ], - "established": 2005, - "kind": "funder", - "labels": [ - "CMCC Foundation - Euro-Mediterranean Center on Climate Change" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "75", - "country_subdivision_name": "Apulia", - "lat": 40.35481, - "lng": 18.17244, - "name": "Lecce", - "@type": "wcrp:location", - "@id": "universal:location/01tf11a61" - } - ], - "ror": "01tf11a61", - "url": [ - "https://www.cmcc.it", - "https://en.wikipedia.org/wiki/Euro-Mediterranean_Center_for_Climate_Change" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cmcc" -} diff --git a/organisation/cmip-ipo.json b/organisation/cmip-ipo.json deleted file mode 100644 index c352352d..00000000 --- a/organisation/cmip-ipo.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CMIP-IPO", - "ui_label": "WCRP-CMIP International Project Office", - "description": "", - "acronyms": [ - "CMIP-IPO", - "WCRP-CMIP" - ], - "aliases": [], - "established": 2021, - "kind": "nonprofit", - "labels": [ - "WCRP-CMIP International Project Office" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.59947, - "lng": -1.29175, - "name": "Harwell", - "@type": "wcrp:location", - "@id": "universal:location/000fg4e24" - } - ], - "ror": "000fg4e24", - "url": [ - "https://wcrp-cmip.org" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cmip-ipo" -} diff --git a/organisation/cnes.json b/organisation/cnes.json deleted file mode 100644 index 01279434..00000000 --- a/organisation/cnes.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "CNES", - "ui_label": "Centre National d'Études Spatiales", - "description": "", - "acronyms": [ - "CNES" - ], - "aliases": [], - "established": 1961, - "kind": "Funder", - "labels": [ - "National Centre for Space Studies" - ], - "location": { - "city": "Paris", - "country": [ - "France", - "FR" - ], - "lat": 48.85341, - "lon": 2.3488, - "@type": "esgf:location", - "@id": "universal:location/04h1h0y33" - }, - "ror": "04h1h0y33", - "url": [ - "https://www.cnes.fr" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cnes" -} diff --git a/organisation/cnr.json b/organisation/cnr.json deleted file mode 100644 index 958c8906..00000000 --- a/organisation/cnr.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CNR", - "ui_label": "National Research Council", - "description": "", - "acronyms": [ - "CNR" - ], - "aliases": [], - "established": 1923, - "kind": "funder", - "labels": [ - "Consiglio Nazionale delle Ricerche", - "National Research Council" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "62", - "country_subdivision_name": "Lazio", - "lat": 41.89193, - "lng": 12.51133, - "name": "Rome", - "@type": "wcrp:location", - "@id": "universal:location/04zaypm56" - } - ], - "ror": "04zaypm56", - "url": [ - "https://www.cnr.it", - "http://en.wikipedia.org/wiki/National_Research_Council_%28Italy%29" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cnr" -} diff --git a/organisation/cnrm-cerfacs.json b/organisation/cnrm-cerfacs.json deleted file mode 100644 index 09eb0716..00000000 --- a/organisation/cnrm-cerfacs.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "CNRM-CERFACS", - "ui_label": "Météo-France", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1995, - "kind": "other", - "labels": [ - "Météo-France" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "OCC", - "country_subdivision_name": "Occitanie", - "lat": 43.60426, - "lng": 1.44367, - "name": "Toulouse", - "@type": "wcrp:location", - "@id": "universal:location/0233st365" - } - ], - "ror": "0233st365", - "url": [ - "http://www.meteofrance.com/accueil", - "https://en.wikipedia.org/wiki/M%C3%A9t%C3%A9o-France" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cnrm-cerfacs" -} diff --git a/organisation/cnrm.json b/organisation/cnrm.json deleted file mode 100644 index ac641623..00000000 --- a/organisation/cnrm.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "CNRM", - "ui_label": "National Meteorological Satellite Center", - "description": "", - "acronyms": [ - "NMSC" - ], - "aliases": [ - "기상청 국가기상위성센터" - ], - "established": 2009, - "kind": "facility", - "labels": [ - "National Meteorological Satellite Center", - "국가기상위성센터" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "43", - "country_subdivision_name": "North Chungcheong", - "lat": 36.85667, - "lng": 127.44333, - "name": "Chinch'ŏn", - "@type": "wcrp:location", - "@id": "universal:location/043zvrs33" - } - ], - "ror": "043zvrs33", - "url": [ - "https://nmsc.kma.go.kr", - "https://ko.wikipedia.org/wiki/%EA%B5%AD%EA%B0%80%EA%B8%B0%EC%83%81%EC%9C%84%EC%84%B1%EC%84%BC%ED%84%B0" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cnrm" -} diff --git a/organisation/cnrs.json b/organisation/cnrs.json deleted file mode 100644 index 5a2dd353..00000000 --- a/organisation/cnrs.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "CNRS", - "ui_label": "Centre National de la Recherche Scientifique", - "description": "", - "acronyms": [ - "CNRS" - ], - "aliases": [], - "established": 1939, - "kind": "funder", - "labels": [ - "Centre National de la Recherche Scientifique", - "French National Centre for Scientific Research" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "IDF", - "country_subdivision_name": "Île-de-France", - "lat": 48.85341, - "lng": 2.3488, - "name": "Paris", - "@type": "wcrp:location", - "@id": "universal:location/02feahw73" - } - ], - "ror": "02feahw73", - "url": [ - "https://www.cnrs.fr", - "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cnrs" -} diff --git a/organisation/cola.json b/organisation/cola.json deleted file mode 100644 index 81617c6a..00000000 --- a/organisation/cola.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "COLA", - "ui_label": "Ocean Atmosphere Systems (Germany)", - "description": "", - "acronyms": [], - "aliases": [], - "established": null, - "kind": "company", - "labels": [ - "Ocean Atmosphere Systems (Germany)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/01x2g0m45" - } - ], - "ror": "01x2g0m45", - "url": [ - "https://oasys-research.com/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cola" -} diff --git a/organisation/comsats.json b/organisation/comsats.json deleted file mode 100644 index a733bc15..00000000 --- a/organisation/comsats.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "COMSATS", - "ui_label": "International Centre for Climate Change and Development", - "description": "", - "acronyms": [ - "ICCCAD" - ], - "aliases": [], - "established": 2009, - "kind": "facility", - "labels": [ - "International Centre for Climate Change and Development" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "BD", - "country_name": "Bangladesh", - "country_subdivision_code": "C", - "country_subdivision_name": "Dhaka Division", - "lat": 23.7104, - "lng": 90.40744, - "name": "Dhaka", - "@type": "wcrp:location", - "@id": "universal:location/02dpmge29" - } - ], - "ror": "02dpmge29", - "url": [ - "http://www.icccad.net/", - "https://en.wikipedia.org/wiki/International_Centre_for_Climate_Change_and_Development" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "comsats" -} diff --git a/organisation/cr.json b/organisation/cr.json deleted file mode 100644 index 60dffe60..00000000 --- a/organisation/cr.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "CR", - "ui_label": "Climate Resource (Australia)", - "description": "", - "acronyms": [ - "CR" - ], - "aliases": [ - "Climate Resource", - "Climate Resource Ltd", - "Climate Resource Pty Ltd" - ], - "established": 2020, - "kind": "Company", - "labels": [], - "location": { - "city": "Melbourne", - "country": [ - "Australia", - "AU" - ], - "lat": -37.814, - "lon": 144.96332, - "@type": "esgf:location", - "@id": "universal:location/01kk86953" - }, - "ror": "01kk86953", - "url": [ - "https://www.climate-resource.com" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cr" -} diff --git a/organisation/creaf.json b/organisation/creaf.json deleted file mode 100644 index cf902c28..00000000 --- a/organisation/creaf.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "CREAF", - "ui_label": "Centre for Research on Ecology and Forestry Applications", - "description": "", - "acronyms": [ - "CREAF", - "CREAF-CERCA" - ], - "aliases": [], - "established": 1987, - "kind": "facility", - "labels": [ - "Centre de Recerca Ecològica i Aplicacions Forestals", - "Centre for Research on Ecology and Forestry Applications", - "Centro de Investigación Ecológica y Aplicaciones Forestales" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "CT", - "country_subdivision_name": "Catalonia", - "lat": 41.49109, - "lng": 2.14079, - "name": "Cerdanyola del Vallès", - "@type": "wcrp:location", - "@id": "universal:location/03abrgd14" - } - ], - "ror": "03abrgd14", - "url": [ - "https://www.creaf.cat" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "creaf" -} diff --git a/organisation/csc.json b/organisation/csc.json deleted file mode 100644 index dbdbf6d9..00000000 --- a/organisation/csc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "CSC", - "ui_label": "CSC - IT Center for Science (Finland)", - "description": "", - "acronyms": [ - "CSC" - ], - "aliases": [ - "Finnish IT center for science" - ], - "established": 1971, - "kind": "company", - "labels": [ - "CSC - IT Center for Science", - "CSC - IT Center for Science (Finland)", - "CSC – Tieteen tietotekniikan keskus oy Yhteystiedot" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FI", - "country_name": "Finland", - "country_subdivision_code": "18", - "country_subdivision_name": "Uusimaa", - "lat": 60.2052, - "lng": 24.6522, - "name": "Espoo", - "@type": "wcrp:location", - "@id": "universal:location/04m8m1253" - } - ], - "ror": "04m8m1253", - "url": [ - "https://www.csc.fi/", - "https://en.wikipedia.org/wiki/CSC_%E2%80%93_IT_Center_for_Science" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "csc" -} diff --git a/organisation/csic.json b/organisation/csic.json deleted file mode 100644 index 707de925..00000000 --- a/organisation/csic.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "CSIC", - "ui_label": "Consejo Superior de Investigaciones Científicas", - "description": "", - "acronyms": [ - "CSIC" - ], - "aliases": [], - "established": 1939, - "kind": "funder", - "labels": [ - "Consejo Superior de Investigaciones Científicas", - "Consell Superior d'Investigacions Científiques", - "Consello Superior de Investigacións Científicas", - "Spanish National Research Council" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "MD", - "country_subdivision_name": "Madrid", - "lat": 40.4165, - "lng": -3.70256, - "name": "Madrid", - "@type": "wcrp:location", - "@id": "universal:location/02gfc7t72" - } - ], - "ror": "02gfc7t72", - "url": [ - "https://www.csic.es", - "https://en.wikipedia.org/wiki/Spanish_National_Research_Council" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "csic" -} diff --git a/organisation/csir-wits-csiro.json b/organisation/csir-wits-csiro.json deleted file mode 100644 index 98a52ccb..00000000 --- a/organisation/csir-wits-csiro.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CSIR-Wits-CSIRO", - "ui_label": "Commonwealth Scientific and Industrial Research Organisation", - "description": "", - "acronyms": [ - "CSIRO" - ], - "aliases": [], - "established": 1926, - "kind": "funder", - "labels": [ - "Commonwealth Scientific and Industrial Research Organisation" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "ACT", - "country_subdivision_name": "Australian Capital Territory", - "lat": -35.28346, - "lng": 149.12807, - "name": "Canberra", - "@type": "wcrp:location", - "@id": "universal:location/03qn8fb07" - } - ], - "ror": "03qn8fb07", - "url": [ - "http://www.csiro.au/", - "http://en.wikipedia.org/wiki/Commonwealth_Scientific_and_Industrial_Research_Organisation" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "csir-wits-csiro" -} diff --git a/organisation/csir.json b/organisation/csir.json deleted file mode 100644 index 536b0ef7..00000000 --- a/organisation/csir.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CSIR", - "ui_label": "Pakistan Council of Scientific & Industrial Research", - "description": "", - "acronyms": [ - "PCSIR" - ], - "aliases": [], - "established": 1953, - "kind": "government", - "labels": [ - "Pakistan Council of Scientific & Industrial Research" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "PK", - "country_name": "Pakistan", - "country_subdivision_code": "IS", - "country_subdivision_name": "Islamabad", - "lat": 33.72148, - "lng": 73.04329, - "name": "Islamabad", - "@type": "wcrp:location", - "@id": "universal:location/05vmcbf05" - } - ], - "ror": "05vmcbf05", - "url": [ - "http://www.pcsir.gov.pk/", - "https://en.wikipedia.org/wiki/Pakistan_Council_of_Scientific_and_Industrial_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "csir" -} diff --git a/organisation/csiro.json b/organisation/csiro.json deleted file mode 100644 index fc46225b..00000000 --- a/organisation/csiro.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "CSIRO", - "ui_label": "Commonwealth Scientific and Industrial Research Organisation", - "description": "", - "acronyms": [ - "CSIRO" - ], - "aliases": [], - "established": 1926, - "kind": "funder", - "labels": [ - "Commonwealth Scientific and Industrial Research Organisation" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "ACT", - "country_subdivision_name": "Australian Capital Territory", - "lat": -35.28346, - "lng": 149.12807, - "name": "Canberra", - "@type": "wcrp:location", - "@id": "universal:location/03qn8fb07" - } - ], - "ror": "03qn8fb07", - "url": [ - "http://www.csiro.au/", - "http://en.wikipedia.org/wiki/Commonwealth_Scientific_and_Industrial_Research_Organisation" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "csiro" -} diff --git a/organisation/cu.json b/organisation/cu.json deleted file mode 100644 index 0f4e765a..00000000 --- a/organisation/cu.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "CU", - "ui_label": "University of Colorado Boulder", - "description": "", - "acronyms": [ - "UCB" - ], - "aliases": [ - "CU-Boulder" - ], - "established": 1876, - "kind": "education", - "labels": [ - "Universidad de Colorado en Boulder", - "University of Colorado Boulder", - "Université du Colorado à Boulder" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CO", - "country_subdivision_name": "Colorado", - "lat": 40.01499, - "lng": -105.27055, - "name": "Boulder", - "@type": "wcrp:location", - "@id": "universal:location/02ttsq026" - } - ], - "ror": "02ttsq026", - "url": [ - "http://www.colorado.edu/", - "http://en.wikipedia.org/wiki/University_of_Colorado_Boulder" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cu" -} diff --git a/organisation/cug.json b/organisation/cug.json deleted file mode 100644 index 42123927..00000000 --- a/organisation/cug.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "CUG", - "ui_label": "China University of Geosciences", - "description": "", - "acronyms": [ - "CUG" - ], - "aliases": [ - "Beijing Institute of Geology", - "Hubei College of Geology", - "Wuhan College of Geology" - ], - "established": 1952, - "kind": "education", - "labels": [ - "China University of Geosciences", - "中国地质大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "HB", - "country_subdivision_name": "Hubei", - "lat": 30.58333, - "lng": 114.26667, - "name": "Wuhan", - "@type": "wcrp:location", - "@id": "universal:location/04gcegc37" - } - ], - "ror": "04gcegc37", - "url": [ - "https://www.cug.edu.cn/", - "https://en.wikipedia.org/wiki/China_University_of_Geosciences_(Wuhan)" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "cug" -} diff --git a/organisation/desnz.json b/organisation/desnz.json deleted file mode 100644 index 84850c6a..00000000 --- a/organisation/desnz.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "DESNZ", - "ui_label": "Department for Energy Security and Net Zero", - "description": "", - "acronyms": [ - "DESNZ" - ], - "aliases": [ - "Department for Energy Security & Net Zero" - ], - "established": 2023, - "kind": "funder", - "labels": [ - "Department for Energy Security and Net Zero" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/01s5a4v70" - } - ], - "ror": "01s5a4v70", - "url": [ - "https://www.gov.uk/government/organisations/department-for-energy-security-and-net-zero", - "https://en.wikipedia.org/wiki/Department_for_Energy_Security_and_Net_Zero" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "desnz" -} diff --git a/organisation/dias.json b/organisation/dias.json deleted file mode 100644 index 33ab0025..00000000 --- a/organisation/dias.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "DIAS", - "ui_label": "GDA (United States)", - "description": "", - "acronyms": [], - "aliases": [ - "Geospatial Data Analysis" - ], - "established": 2002, - "kind": "company", - "labels": [ - "GDA (United States)" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "PA", - "country_subdivision_name": "Pennsylvania", - "lat": 40.79339, - "lng": -77.86, - "name": "State College", - "@type": "wcrp:location", - "@id": "universal:location/03tyqfz83" - } - ], - "ror": "03tyqfz83", - "url": [ - "http://www.gdacorp.com/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dias" -} diff --git a/organisation/dkrz.json b/organisation/dkrz.json deleted file mode 100644 index bd3658a0..00000000 --- a/organisation/dkrz.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "DKRZ", - "ui_label": "German Climate Computing Centre", - "description": "", - "acronyms": [ - "DKRZ" - ], - "aliases": [], - "established": 1987, - "kind": "facility", - "labels": [ - "Deutsches Klimarechenzentrum", - "German Climate Computing Centre" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/03ztgj037" - } - ], - "ror": "03ztgj037", - "url": [ - "https://www.dkrz.de/", - "http://en.wikipedia.org/wiki/German_Climate_Computing_Centre" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dkrz" -} diff --git a/organisation/dlr.json b/organisation/dlr.json deleted file mode 100644 index 2eeabbe4..00000000 --- a/organisation/dlr.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "DLR", - "ui_label": "German Society for Aeronautics and Astronautics", - "description": "", - "acronyms": [ - "DGLR" - ], - "aliases": [ - "Deutsche Gesellschaft für Luft- und Raumfahrt" - ], - "established": 1912, - "kind": "other", - "labels": [ - "Deutsche Gesellschaft für Luft- und Raumfahrt - Lilienthal-Oberth e.V.", - "German Society for Aeronautics and Astronautics" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "NW", - "country_subdivision_name": "North Rhine-Westphalia", - "lat": 50.73438, - "lng": 7.09549, - "name": "Bonn", - "@type": "wcrp:location", - "@id": "universal:location/05xj12p61" - } - ], - "ror": "05xj12p61", - "url": [ - "https://dglr.de", - "https://en.wikipedia.org/wiki/German_Society_for_Aeronautics_and_Astronautics" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dlr" -} diff --git a/organisation/dmi.json b/organisation/dmi.json deleted file mode 100644 index 0f52ba29..00000000 --- a/organisation/dmi.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "DMI", - "ui_label": "Danish Meteorological Institute", - "description": "", - "acronyms": [ - "DMI" - ], - "aliases": [ - "Danmarks Meteorologiske Institut", - "National Danish Meteorological Institute", - "The National Danish Meteorological Institute" - ], - "established": 1872, - "kind": "facility", - "labels": [ - "Danish Meteorological Institute" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DK", - "country_name": "Denmark", - "country_subdivision_code": "84", - "country_subdivision_name": "Capital Region", - "lat": 55.67594, - "lng": 12.56553, - "name": "Copenhagen", - "@type": "wcrp:location", - "@id": "universal:location/020m6x732" - } - ], - "ror": "020m6x732", - "url": [ - "https://www.dmi.dk", - "https://en.wikipedia.org/wiki/Danish_Meteorological_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dmi" -} diff --git a/organisation/dsit.json b/organisation/dsit.json deleted file mode 100644 index 6db7b66f..00000000 --- a/organisation/dsit.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "DSIT", - "ui_label": "Department for Science, Innovation and Technology", - "description": "", - "acronyms": [ - "DSIT" - ], - "aliases": [ - "Department for Science, Innovation & Technology" - ], - "established": 2023, - "kind": "funder", - "labels": [ - "Department for Science, Innovation and Technology" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/028z36n30" - } - ], - "ror": "028z36n30", - "url": [ - "https://www.gov.uk/government/organisations/department-for-science-innovation-and-technology", - "https://en.wikipedia.org/wiki/Department_for_Science%2C_Innovation_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dsit" -} diff --git a/organisation/dtu.json b/organisation/dtu.json deleted file mode 100644 index 7bb15a67..00000000 --- a/organisation/dtu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "DTU", - "ui_label": "Technical University of Denmark", - "description": "", - "acronyms": [ - "DTU" - ], - "aliases": [], - "established": 1829, - "kind": "education", - "labels": [ - "Danmarks Tekniske Universitet", - "Dänemarks Technische Universität", - "Technical University of Denmark" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DK", - "country_name": "Denmark", - "country_subdivision_code": "84", - "country_subdivision_name": "Capital Region", - "lat": 55.77044, - "lng": 12.50378, - "name": "Kongens Lyngby", - "@type": "wcrp:location", - "@id": "universal:location/04qtj9h94" - } - ], - "ror": "04qtj9h94", - "url": [ - "https://dtu.dk", - "http://en.wikipedia.org/wiki/Technical_University_of_Denmark" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dtu" -} diff --git a/organisation/dwd.json b/organisation/dwd.json deleted file mode 100644 index b5d14c64..00000000 --- a/organisation/dwd.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "DWD", - "ui_label": "Deutscher Wetterdienst", - "description": "", - "acronyms": [ - "DWD" - ], - "aliases": [ - "German Meteorological Service" - ], - "established": 1952, - "kind": "facility", - "labels": [ - "Deutscher Wetterdienst" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HE", - "country_subdivision_name": "Hesse", - "lat": 50.10061, - "lng": 8.76647, - "name": "Offenbach", - "@type": "wcrp:location", - "@id": "universal:location/02nrqs528" - } - ], - "ror": "02nrqs528", - "url": [ - "https://www.dwd.de", - "http://en.wikipedia.org/wiki/Deutscher_Wetterdienst" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "dwd" -} diff --git a/organisation/e3sm-project.json b/organisation/e3sm-project.json deleted file mode 100644 index 3c62005c..00000000 --- a/organisation/e3sm-project.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "E3SM-Project", - "ui_label": "Exascale (United Kingdom)", - "description": "", - "acronyms": [], - "aliases": [], - "established": 2009, - "kind": "company", - "labels": [ - "Exascale (United Kingdom)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 52.6291, - "lng": -2.0577, - "name": "Essington", - "@type": "wcrp:location", - "@id": "universal:location/032khhz22" - } - ], - "ror": "032khhz22", - "url": [ - "https://www.exascale.co.uk/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "e3sm-project" -} diff --git a/organisation/eawag.json b/organisation/eawag.json deleted file mode 100644 index 11c7322d..00000000 --- a/organisation/eawag.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "EAWAG", - "ui_label": "Swiss Federal Institute of Aquatic Science and Technology", - "description": "", - "acronyms": [ - "EAWAG" - ], - "aliases": [], - "established": 1936, - "kind": "Facility", - "labels": [ - "Eidgenössische Anstalt für Wasserversorgung, Abwasserreinigung und Gewässerschutz", - "Institut fédéral pour l’aménagement, l’épuration et la protection des eaux" - ], - "location": { - "city": "Dübendorf", - "country": [ - "Switzerland", - "CH" - ], - "lat": 47.39724, - "lon": 8.61872, - "@type": "esgf:location", - "@id": "universal:location/00pc48d59" - }, - "ror": "00pc48d59", - "url": [ - "https://www.eawag.ch" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "eawag" -} diff --git a/organisation/ec-earth-consortium.json b/organisation/ec-earth-consortium.json deleted file mode 100644 index 49de202f..00000000 --- a/organisation/ec-earth-consortium.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "EC-Earth-Consortium", - "ui_label": "EC-Earth Consortium", - "description": "", - "acronyms": [], - "aliases": [ - "EC-Earth" - ], - "established": 2006, - "kind": "other", - "labels": [ - "EC-Earth Consortium" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "UT", - "country_subdivision_name": "Utrecht", - "lat": 52.11, - "lng": 5.18056, - "name": "De Bilt", - "@type": "wcrp:location", - "@id": "universal:location/010bg5245" - } - ], - "ror": "010bg5245", - "url": [ - "https://ec-earth.org" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ec-earth-consortium" -} diff --git a/organisation/eccc.json b/organisation/eccc.json deleted file mode 100644 index 965f692e..00000000 --- a/organisation/eccc.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "ECCC", - "ui_label": "Environment and Climate Change Canada", - "description": "", - "acronyms": [ - "ECCC" - ], - "aliases": [], - "established": 1971, - "kind": "funder", - "labels": [ - "Environment and Climate Change Canada", - "Environnement et Changement Climatique Canada" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "ON", - "country_subdivision_name": "Ontario", - "lat": 45.41117, - "lng": -75.69812, - "name": "Ottawa", - "@type": "wcrp:location", - "@id": "universal:location/026ny0e17" - } - ], - "ror": "026ny0e17", - "url": [ - "https://www.canada.ca/en/environment-climate-change.html", - "https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "eccc" -} diff --git a/organisation/ecmwf.json b/organisation/ecmwf.json deleted file mode 100644 index 53f30d2b..00000000 --- a/organisation/ecmwf.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ECMWF", - "ui_label": "European Centre for Medium-Range Weather Forecasts", - "description": "", - "acronyms": [ - "ECMWF" - ], - "aliases": [], - "established": 1975, - "kind": "funder", - "labels": [ - "European Centre for Medium-Range Weather Forecasts" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.45625, - "lng": -0.97113, - "name": "Reading", - "@type": "wcrp:location", - "@id": "universal:location/014w0fd65" - } - ], - "ror": "014w0fd65", - "url": [ - "http://www.ecmwf.int/", - "http://en.wikipedia.org/wiki/European_Centre_for_Medium-Range_Weather_Forecasts" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ecmwf" -} diff --git a/organisation/edf.json b/organisation/edf.json deleted file mode 100644 index 31ed996c..00000000 --- a/organisation/edf.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "EDF", - "ui_label": "EDF Energy North America", - "description": "", - "acronyms": [], - "aliases": [ - "EDF Energy NA" - ], - "established": 1946, - "kind": "company", - "labels": [ - "EDF Energy North America", - "Électricité de France" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 32.71571, - "lng": -117.16472, - "name": "San Diego", - "@type": "wcrp:location", - "@id": "universal:location/04pq5sx96" - } - ], - "ror": "04pq5sx96", - "url": [ - "https://edfenergyna.com", - "https://en.wikipedia.org/wiki/%C3%89lectricit%C3%A9_de_France" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "edf" -} diff --git a/organisation/empa.json b/organisation/empa.json deleted file mode 100644 index b5e38734..00000000 --- a/organisation/empa.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "Empa", - "ui_label": "Swiss Federal Laboratories for Materials Science and Technology", - "description": "", - "acronyms": [ - "EMPA" - ], - "aliases": [], - "established": 1880, - "kind": "facility", - "labels": [ - "Eidgenössische Materialprüfungs- und Forschungsanstalt", - "Laboratoire fédéral d'essai des matériaux et de recherche", - "Swiss Federal Laboratories for Materials Science and Technology" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "ZH", - "country_subdivision_name": "Zurich", - "lat": 47.39724, - "lng": 8.61872, - "name": "Dübendorf", - "@type": "wcrp:location", - "@id": "universal:location/02x681a42" - } - ], - "ror": "02x681a42", - "url": [ - "https://www.empa.ch", - "https://en.wikipedia.org/wiki/Swiss_Federal_Laboratories_for_Materials_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "empa" -} diff --git a/organisation/ens.json b/organisation/ens.json deleted file mode 100644 index 2aab7ed6..00000000 --- a/organisation/ens.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "ENS", - "ui_label": "École Normale Supérieure", - "description": "", - "acronyms": [ - "ENS" - ], - "aliases": [ - "ENS de Bujumbura", - "École Normale Supérieure de Bujumbura" - ], - "established": 1965, - "kind": "education", - "labels": [ - "École Normale Supérieure" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "BI", - "country_name": "Burundi", - "country_subdivision_code": "BM", - "country_subdivision_name": "Bujumbura Mairie", - "lat": -3.38193, - "lng": 29.36142, - "name": "Bujumbura", - "@type": "wcrp:location", - "@id": "universal:location/01dp7jr64" - } - ], - "ror": "01dp7jr64", - "url": [ - "https://ens.edu.bi" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ens" -} diff --git a/organisation/enveo.json b/organisation/enveo.json deleted file mode 100644 index 9fea57ce..00000000 --- a/organisation/enveo.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "ENVEO", - "ui_label": "Environmental Earth Observation Information Technology (Austria)", - "description": "", - "acronyms": [ - "ENVEO IT" - ], - "aliases": [], - "established": 2001, - "kind": "company", - "labels": [ - "Environmental Earth Observation Information Technology (Austria)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "AT", - "country_name": "Austria", - "country_subdivision_code": "7", - "country_subdivision_name": "Tyrol", - "lat": 47.26266, - "lng": 11.39454, - "name": "Innsbruck", - "@type": "wcrp:location", - "@id": "universal:location/04ezd4121" - } - ], - "ror": "04ezd4121", - "url": [ - "https://www.enveo.at/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "enveo" -} diff --git a/organisation/esa.json b/organisation/esa.json deleted file mode 100644 index a30ea563..00000000 --- a/organisation/esa.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "ESA", - "ui_label": "European Space Agency", - "description": "", - "acronyms": [ - "ASE", - "ESA" - ], - "aliases": [], - "established": 1975, - "kind": "funder", - "labels": [ - "Agence Spatiale Européenne", - "Agència Espacial Europea", - "Europako Espazio Agentzia", - "European Space Agency" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "IDF", - "country_subdivision_name": "Île-de-France", - "lat": 48.85341, - "lng": 2.3488, - "name": "Paris", - "@type": "wcrp:location", - "@id": "universal:location/03wd9za21" - } - ], - "ror": "03wd9za21", - "url": [ - "http://www.esa.int/ESA", - "https://en.wikipedia.org/wiki/European_Space_Agency" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "esa" -} diff --git a/organisation/escwa.json b/organisation/escwa.json deleted file mode 100644 index ca18e8ed..00000000 --- a/organisation/escwa.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "ESCWA", - "ui_label": "United Nations Economic and Social Commission for Western Asia", - "description": "", - "acronyms": [ - "ECWA", - "ESCWA" - ], - "aliases": [ - "United Nations Economic Commission for Western Asia" - ], - "established": 1973, - "kind": "government", - "labels": [ - "United Nations Economic and Social Commission for Western Asia", - "الإسكوا‎" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "LB", - "country_name": "Lebanon", - "country_subdivision_code": "BA", - "country_subdivision_name": "Beyrouth", - "lat": 33.89332, - "lng": 35.50157, - "name": "Beirut", - "@type": "wcrp:location", - "@id": "universal:location/03yqyyy69" - } - ], - "ror": "03yqyyy69", - "url": [ - "https://www.unescwa.org/", - "https://en.wikipedia.org/wiki/United_Nations_Economic_and_Social_Commission_for_Western_Asia" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "escwa" -} diff --git a/organisation/esso.json b/organisation/esso.json deleted file mode 100644 index 5fbd3fbc..00000000 --- a/organisation/esso.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "ESSO", - "ui_label": "Indian National Centre for Ocean Information Services", - "description": "", - "acronyms": [ - "INCOIS" - ], - "aliases": [], - "established": 1999, - "kind": "Government", - "labels": [], - "location": { - "city": "Hyderabad", - "country": [ - "India", - "IN" - ], - "lat": 17.38405, - "lon": 78.45636, - "@type": "esgf:location", - "@id": "universal:location/04xbqmj23" - }, - "ror": "04xbqmj23", - "url": [ - "http://www.incois.gov.in/portal/index.jsp" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "esso" -} diff --git a/organisation/essti.json b/organisation/essti.json deleted file mode 100644 index 335f8d06..00000000 --- a/organisation/essti.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ESSTI", - "ui_label": "Space Science Institute", - "description": "", - "acronyms": [ - "SSI" - ], - "aliases": [], - "established": 1992, - "kind": "nonprofit", - "labels": [ - "Space Science Institute" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CO", - "country_subdivision_name": "Colorado", - "lat": 40.01499, - "lng": -105.27055, - "name": "Boulder", - "@type": "wcrp:location", - "@id": "universal:location/046a9q865" - } - ], - "ror": "046a9q865", - "url": [ - "http://www.spacescience.org/", - "https://en.wikipedia.org/wiki/Space_Science_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "essti" -} diff --git "a/organisation/eth-z\303\274rich.json" "b/organisation/eth-z\303\274rich.json" deleted file mode 100644 index 16f17f55..00000000 --- "a/organisation/eth-z\303\274rich.json" +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "ETH-Zürich", - "ui_label": "Federal Polytechnic Nekede", - "description": "", - "acronyms": [ - "FPNO" - ], - "aliases": [ - "Federal Polytechnic Nekede Owerri" - ], - "established": 1978, - "kind": "education", - "labels": [ - "Federal Polytechnic Nekede" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "NG", - "country_name": "Nigeria", - "country_subdivision_code": "IM", - "country_subdivision_name": "Imo State", - "lat": 5.48363, - "lng": 7.03325, - "name": "Owerri", - "@type": "wcrp:location", - "@id": "universal:location/02nwh8244" - } - ], - "ror": "02nwh8244", - "url": [ - "https://fedpolynekede.edu.ng/", - "https://en.wikipedia.org/wiki/Federal_Polytechnic,_Nekede" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "eth-zürich" -} diff --git a/organisation/facet.json b/organisation/facet.json deleted file mode 100644 index 2101a441..00000000 --- a/organisation/facet.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "FACET", - "ui_label": "Fundación Ciencias Exactas y Naturales", - "description": "", - "acronyms": [ - "FUNDACEN" - ], - "aliases": [], - "established": 1990, - "kind": "nonprofit", - "labels": [ - "Fundación Ciencias Exactas y Naturales" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "AR", - "country_name": "Argentina", - "country_subdivision_code": "C", - "country_subdivision_name": "Buenos Aires F.D.", - "lat": -34.61315, - "lng": -58.37723, - "name": "Buenos Aires", - "@type": "wcrp:location", - "@id": "universal:location/05rxmkq09" - } - ], - "ror": "05rxmkq09", - "url": [ - "http://www.fundacen.org.ar/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "facet" -} diff --git a/organisation/fao.json b/organisation/fao.json deleted file mode 100644 index 6c141976..00000000 --- a/organisation/fao.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "FAO", - "ui_label": "Organisasi Riset Pertanian dan Pangan", - "description": "", - "acronyms": [ - "ORPP" - ], - "aliases": [ - "Badan Penelitian dan Pengembangan Pertanian" - ], - "established": 2022, - "kind": "funder", - "labels": [ - "Food and Agriculture Research Organization", - "Organisasi Riset Pertanian dan Pangan" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "ID", - "country_name": "Indonesia", - "country_subdivision_code": "JK", - "country_subdivision_name": "Jakarta", - "lat": -6.21462, - "lng": 106.84513, - "name": "Jakarta", - "@type": "wcrp:location", - "@id": "universal:location/008d63v91" - } - ], - "ror": "008d63v91", - "url": [ - "https://brin.go.id/orpp", - "https://id.wikipedia.org/wiki/Organisasi_Riset_Pertanian_dan_Pangan" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fao" -} diff --git a/organisation/fidelidade.json b/organisation/fidelidade.json deleted file mode 100644 index ce41a738..00000000 --- a/organisation/fidelidade.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "Fidelidade", - "ui_label": "Fidelidade Companhia de Seguros SA (Portugal)", - "description": "", - "acronyms": [], - "aliases": [], - "established": null, - "kind": "company", - "labels": [ - "Fidelidade Companhia de Seguros SA (Portugal)", - "Fidelidade Insurance Company" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "PT", - "country_name": "Portugal", - "country_subdivision_code": "11", - "country_subdivision_name": "Lisbon", - "lat": 38.71667, - "lng": -9.13333, - "name": "Lisbon", - "@type": "wcrp:location", - "@id": "universal:location/035qk7d98" - } - ], - "ror": "035qk7d98", - "url": [ - "https://www.fidelidade.pt" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fidelidade" -} diff --git a/organisation/fio-qlnm.json b/organisation/fio-qlnm.json deleted file mode 100644 index c3fd0d50..00000000 --- a/organisation/fio-qlnm.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "FIO-QLNM", - "ui_label": "First Institute of Oceanography", - "description": "", - "acronyms": [ - "FIO" - ], - "aliases": [], - "established": 1958, - "kind": "facility", - "labels": [ - "First Institute of Oceanography" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "SD", - "country_subdivision_name": "Shandong", - "lat": 36.06488, - "lng": 120.38042, - "name": "Qingdao", - "@type": "wcrp:location", - "@id": "universal:location/01y34t753" - } - ], - "ror": "01y34t753", - "url": [ - "http://en.fio.org.cn" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fio-qlnm" -} diff --git a/organisation/fio.json b/organisation/fio.json deleted file mode 100644 index 6b470bf3..00000000 --- a/organisation/fio.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "FIO", - "ui_label": "First Institute of Oceanography", - "description": "", - "acronyms": [ - "FIO" - ], - "aliases": [], - "established": 1958, - "kind": "facility", - "labels": [ - "First Institute of Oceanography" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "SD", - "country_subdivision_name": "Shandong", - "lat": 36.06488, - "lng": 120.38042, - "name": "Qingdao", - "@type": "wcrp:location", - "@id": "universal:location/01y34t753" - } - ], - "ror": "01y34t753", - "url": [ - "http://en.fio.org.cn" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fio" -} diff --git a/organisation/fmi.json b/organisation/fmi.json deleted file mode 100644 index 6ec65fcd..00000000 --- a/organisation/fmi.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "FMI", - "ui_label": "Finnish Meteorological Institute", - "description": "", - "acronyms": [ - "FMI" - ], - "aliases": [], - "established": 1838, - "kind": "government", - "labels": [ - "Finnish Meteorological Institute", - "Ilmatieteen Laitos", - "Meteorologiska Institutet" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FI", - "country_name": "Finland", - "country_subdivision_code": "18", - "country_subdivision_name": "Uusimaa", - "lat": 60.16952, - "lng": 24.93545, - "name": "Helsinki", - "@type": "wcrp:location", - "@id": "universal:location/05hppb561" - } - ], - "ror": "05hppb561", - "url": [ - "http://en.ilmatieteenlaitos.fi/", - "https://en.wikipedia.org/wiki/Finnish_Meteorological_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fmi" -} diff --git a/organisation/fsu.json b/organisation/fsu.json deleted file mode 100644 index ff57ed76..00000000 --- a/organisation/fsu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "FSU", - "ui_label": "Florida State University", - "description": "", - "acronyms": [ - "FSU" - ], - "aliases": [], - "established": 1851, - "kind": "education", - "labels": [ - "Florida State University", - "Universidad Estatal de Florida", - "Université d'État de Floride" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "FL", - "country_subdivision_name": "Florida", - "lat": 30.43826, - "lng": -84.28073, - "name": "Tallahassee", - "@type": "wcrp:location", - "@id": "universal:location/05g3dte14" - } - ], - "ror": "05g3dte14", - "url": [ - "https://www.fsu.edu/", - "http://en.wikipedia.org/wiki/Florida_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fsu" -} diff --git a/organisation/fub.json b/organisation/fub.json deleted file mode 100644 index f91dc6b0..00000000 --- a/organisation/fub.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "FUB", - "ui_label": "Freie Universität Berlin", - "description": "", - "acronyms": [], - "aliases": [ - "FU Berlin", - "Free University of Berlin" - ], - "established": 1948, - "kind": "education", - "labels": [ - "Freie Universität Berlin" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BE", - "country_subdivision_name": "State of Berlin", - "lat": 52.52437, - "lng": 13.41053, - "name": "Berlin", - "@type": "wcrp:location", - "@id": "universal:location/046ak2485" - } - ], - "ror": "046ak2485", - "url": [ - "https://www.fu-berlin.de", - "http://en.wikipedia.org/wiki/Free_University_of_Berlin" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fub" -} diff --git a/organisation/fuberlin.json b/organisation/fuberlin.json deleted file mode 100644 index 3b8ebc12..00000000 --- a/organisation/fuberlin.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "FUBerlin", - "ui_label": "Freie Universität Berlin", - "description": "", - "acronyms": [ - "FU" - ], - "aliases": [ - "FU Berlin", - "Free University of Berlin" - ], - "established": 1948, - "kind": "Education", - "labels": [], - "location": { - "city": "Berlin", - "country": [ - "Germany", - "DE" - ], - "lat": 52.52437, - "lon": 13.41053, - "@type": "esgf:location", - "@id": "universal:location/046ak2485" - }, - "ror": "046ak2485", - "url": [ - "https://www.fu-berlin.de" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fuberlin" -} diff --git a/organisation/fzj.json b/organisation/fzj.json deleted file mode 100644 index 86e14fa6..00000000 --- a/organisation/fzj.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "FZJ", - "ui_label": "Projektträger Jülich", - "description": "", - "acronyms": [ - "PtJ" - ], - "aliases": [ - "Project Management Jülich" - ], - "established": 1974, - "kind": "other", - "labels": [ - "Projektträger Jülich" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "NW", - "country_subdivision_name": "North Rhine-Westphalia", - "lat": 50.92149, - "lng": 6.36267, - "name": "Jülich", - "@type": "wcrp:location", - "@id": "universal:location/037vx0145" - } - ], - "ror": "037vx0145", - "url": [ - "https://www.ptj.de", - "https://de.wikipedia.org/wiki/Projekttr%C3%A4ger_J%C3%BClich" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "fzj" -} diff --git a/organisation/gcisc.json b/organisation/gcisc.json deleted file mode 100644 index b3ceb03b..00000000 --- a/organisation/gcisc.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "GCISC", - "ui_label": "Global Impact", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1956, - "kind": "nonprofit", - "labels": [ - "Global Impact" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "VA", - "country_subdivision_name": "Virginia", - "lat": 38.80484, - "lng": -77.04692, - "name": "Alexandria", - "@type": "wcrp:location", - "@id": "universal:location/007z06v19" - } - ], - "ror": "007z06v19", - "url": [ - "https://charity.org", - "https://en.wikipedia.org/wiki/Global_Impact" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "gcisc" -} diff --git a/organisation/gerics.json b/organisation/gerics.json deleted file mode 100644 index b64671bc..00000000 --- a/organisation/gerics.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "GERICS", - "ui_label": "Climate Service Center", - "description": "", - "acronyms": [ - "GERICS" - ], - "aliases": [ - "GERICS Climate Service Center", - "GERICS Climate Service Center Germany" - ], - "established": 2014, - "kind": "facility", - "labels": [ - "Climate Service Center" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/022rwzq94" - } - ], - "ror": "022rwzq94", - "url": [ - "http://www.climate-service-center.de", - "https://de.wikipedia.org/wiki/Climate_Service_Center_Germany" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "gerics" -} diff --git a/organisation/gmu.json b/organisation/gmu.json deleted file mode 100644 index cd04657d..00000000 --- a/organisation/gmu.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "GMU", - "ui_label": "George Mason University", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1957, - "kind": "education", - "labels": [ - "George Mason University", - "Universidad George Mason" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "VA", - "country_subdivision_name": "Virginia", - "lat": 38.84622, - "lng": -77.30637, - "name": "Fairfax", - "@type": "wcrp:location", - "@id": "universal:location/02jqj7156" - } - ], - "ror": "02jqj7156", - "url": [ - "https://www.gmu.edu/", - "http://en.wikipedia.org/wiki/George_Mason_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "gmu" -} diff --git a/organisation/gti.json b/organisation/gti.json deleted file mode 100644 index 493267ea..00000000 --- a/organisation/gti.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "GTI", - "ui_label": "Manuro Tech Research Pvt. Ltd (India)", - "description": "", - "acronyms": [ - "MTRPL" - ], - "aliases": [ - "Manuro Tech Research" - ], - "established": 2008, - "kind": "company", - "labels": [ - "Manuro Tech Research Pvt. Ltd", - "Manuro Tech Research Pvt. Ltd (India)" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "KA", - "country_subdivision_name": "Karnataka", - "lat": 12.97194, - "lng": 77.59369, - "name": "Bengaluru", - "@type": "wcrp:location", - "@id": "universal:location/05mv8mg96" - } - ], - "ror": "05mv8mg96", - "url": [ - "https://www.manuroresearch.com" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "gti" -} diff --git a/organisation/hereon.json b/organisation/hereon.json deleted file mode 100644 index aa1716d3..00000000 --- a/organisation/hereon.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "HEREON", - "ui_label": "Helmholtz-Zentrum Hereon", - "description": "", - "acronyms": [ - "HZG" - ], - "aliases": [ - "Helmholtz-Zentrum Geesthacht Centre for Materials and Coastal Research" - ], - "established": 1956, - "kind": "government", - "labels": [ - "Helmholtz-Zentrum Hereon" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "SH", - "country_subdivision_name": "Schleswig-Holstein", - "lat": 53.43575, - "lng": 10.3779, - "name": "Geesthacht", - "@type": "wcrp:location", - "@id": "universal:location/03qjp1d79" - } - ], - "ror": "03qjp1d79", - "url": [ - "https://www.hereon.de/", - "https://de.wikipedia.org/wiki/Helmholtz-Zentrum_Hereon" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "hereon" -} diff --git a/organisation/hkust.json b/organisation/hkust.json deleted file mode 100644 index daf2be9e..00000000 --- a/organisation/hkust.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "HKUST", - "ui_label": "Hong Kong University of Science and Technology", - "description": "", - "acronyms": [ - "HKUST" - ], - "aliases": [], - "established": 1991, - "kind": "education", - "labels": [ - "Hong Kong University of Science and Technology" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "HK", - "country_name": "Hong Kong", - "country_subdivision_code": null, - "country_subdivision_name": null, - "lat": 22.27832, - "lng": 114.17469, - "name": "Hong Kong", - "@type": "wcrp:location", - "@id": "universal:location/00q4vv597" - } - ], - "ror": "00q4vv597", - "url": [ - "https://hkust.edu.hk", - "http://en.wikipedia.org/wiki/Hong_Kong_University_of_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "hkust" -} diff --git a/organisation/huji.json b/organisation/huji.json deleted file mode 100644 index 4638bf9b..00000000 --- a/organisation/huji.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "HUJI", - "ui_label": "Hebrew University of Jerusalem", - "description": "", - "acronyms": [ - "HUJI" - ], - "aliases": [ - "Al-Jami'ah al-Ibriyyah fi al-Quds", - "Ha-Universita ha-Ivrit bi-Yerushalayim" - ], - "established": 1925, - "kind": "education", - "labels": [ - "Hebrew University of Jerusalem", - "האוניברסיטה העברית בירושלים", - "الجامعة العبرية في القدس" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IL", - "country_name": "Israel", - "country_subdivision_code": "JM", - "country_subdivision_name": "Jerusalem", - "lat": 31.76904, - "lng": 35.21633, - "name": "Jerusalem", - "@type": "wcrp:location", - "@id": "universal:location/03qxff017" - } - ], - "ror": "03qxff017", - "url": [ - "http://new.huji.ac.il/en", - "http://en.wikipedia.org/wiki/Hebrew_University_of_Jerusalem" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "huji" -} diff --git a/organisation/iaa.json b/organisation/iaa.json deleted file mode 100644 index dc5b35aa..00000000 --- a/organisation/iaa.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "IAA", - "ui_label": "Instituto de Astrofísica de Andalucía", - "description": "", - "acronyms": [ - "IAA", - "IAA-CSIC" - ], - "aliases": [], - "established": 1975, - "kind": "facility", - "labels": [ - "Institute of Astrophysics of Andalusia", - "Instituto de Astrofísica de Andalucía" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "AN", - "country_subdivision_name": "Andalusia", - "lat": 37.18817, - "lng": -3.60667, - "name": "Granada", - "@type": "wcrp:location", - "@id": "universal:location/04ka0vh05" - } - ], - "ror": "04ka0vh05", - "url": [ - "https://www.iaa.csic.es", - "https://en.wikipedia.org/wiki/Instituto_de_Astrof%C3%ADsica_de_Andaluc%C3%ADa" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iaa" -} diff --git a/organisation/iaceth.json b/organisation/iaceth.json deleted file mode 100644 index 7df3103a..00000000 --- a/organisation/iaceth.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "IACETH", - "ui_label": "ETH Zurich", - "description": "", - "acronyms": [], - "aliases": [ - "Eidgenössische Technische Hochschule Zürich", - "Politecnico Federale di Zurigo", - "Swiss Federal Institute of Technology in Zurich", - "École Polytechnique Fédérale de Zurich" - ], - "established": 1855, - "kind": "Education", - "labels": [ - "ETH Zürich", - "ETH di Zurigo" - ], - "location": { - "city": "Zurich", - "country": [ - "Switzerland", - "CH" - ], - "lat": 47.36667, - "lon": 8.55, - "@type": "esgf:location", - "@id": "universal:location/05a28rw58" - }, - "ror": "05a28rw58", - "url": [ - "https://ethz.ch" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iaceth" -} diff --git a/organisation/iap.json b/organisation/iap.json deleted file mode 100644 index fdcd99ee..00000000 --- a/organisation/iap.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "IAP", - "ui_label": "Institute of Atmospheric Physics", - "description": "", - "acronyms": [ - "IAP" - ], - "aliases": [ - "Institute of Meteorology of Academia Sinica" - ], - "established": 1928, - "kind": "facility", - "labels": [ - "Institute of Atmospheric Physics", - "中国科学院大气物理研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/0424h4e32" - } - ], - "ror": "0424h4e32", - "url": [ - "http://english.iap.cas.cn/au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iap" -} diff --git a/organisation/icar.json b/organisation/icar.json deleted file mode 100644 index e0041c18..00000000 --- a/organisation/icar.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "ICAR", - "ui_label": "ICAR-National Bureau of Soil Survey and Land Use Planning", - "description": "", - "acronyms": [ - "NBSS&LUP" - ], - "aliases": [ - "National Bureau of Soil Survey and Land Use Planning", - "राष्ट्रीय मृदा सर्वेक्षण एवं भूमि उपयोग नियोजन ब्यूरो" - ], - "established": 1976, - "kind": "facility", - "labels": [ - "ICAR-National Bureau of Soil Survey and Land Use Planning", - "भा.कृ.अ.प.- राष्ट्रीय मृदा सर्वेक्षण एवं भूमि उपयोग नियोजन ब्यूरो" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MH", - "country_subdivision_name": "Maharashtra", - "lat": 21.14631, - "lng": 79.08491, - "name": "Nagpur", - "@type": "wcrp:location", - "@id": "universal:location/05vm7ws26" - } - ], - "ror": "05vm7ws26", - "url": [ - "https://icar-nbsslup.org.in" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "icar" -} diff --git a/organisation/ichec.json b/organisation/ichec.json deleted file mode 100644 index 9e77541a..00000000 --- a/organisation/ichec.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ICHEC", - "ui_label": "Irish Centre for High-End Computing", - "description": "", - "acronyms": [ - "ICHEC" - ], - "aliases": [], - "established": 2005, - "kind": "funder", - "labels": [ - "Irish Centre for High-End Computing" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IE", - "country_name": "Ireland", - "country_subdivision_code": "L", - "country_subdivision_name": "Leinster", - "lat": 53.33306, - "lng": -6.24889, - "name": "Dublin", - "@type": "wcrp:location", - "@id": "universal:location/04te6a418" - } - ], - "ror": "04te6a418", - "url": [ - "https://www.ichec.ie/", - "https://en.wikipedia.org/wiki/Irish_Centre_for_High-End_Computing" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ichec" -} diff --git a/organisation/ictp.json b/organisation/ictp.json deleted file mode 100644 index 7eeadee1..00000000 --- a/organisation/ictp.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "ICTP", - "ui_label": "The Abdus Salam International Centre for Theoretical Physics (ICTP)", - "description": "", - "acronyms": [ - "ICTP" - ], - "aliases": [ - "Abdus Salam International Centre for Theoretical Physics", - "International Centre for Theoretical Physics" - ], - "established": 1964, - "kind": "facility", - "labels": [ - "Centro Internazionale di Fisica Teorica Abdus Salam", - "Mednarodno središče Abdusa Salama za teoretično fiziko", - "The Abdus Salam International Centre for Theoretical Physics (ICTP)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "36", - "country_subdivision_name": "Friuli Venezia Giulia", - "lat": 45.64953, - "lng": 13.77678, - "name": "Trieste", - "@type": "wcrp:location", - "@id": "universal:location/009gyvm78" - } - ], - "ror": "009gyvm78", - "url": [ - "https://www.ictp.it", - "https://en.wikipedia.org/wiki/International_Centre_for_Theoretical_Physics" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ictp" -} diff --git a/organisation/idrc.json b/organisation/idrc.json deleted file mode 100644 index 2d134876..00000000 --- a/organisation/idrc.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "IDRC", - "ui_label": "International Development Research Centre", - "description": "", - "acronyms": [ - "CRDI", - "IDRC" - ], - "aliases": [], - "established": 1970, - "kind": "funder", - "labels": [ - "Centre de recherches pour le développement international", - "International Development Research Centre" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "ON", - "country_subdivision_name": "Ontario", - "lat": 45.41117, - "lng": -75.69812, - "name": "Ottawa", - "@type": "wcrp:location", - "@id": "universal:location/0445x0472" - } - ], - "ror": "0445x0472", - "url": [ - "http://www.idrc.ca/EN/Pages/default.aspx", - "http://en.wikipedia.org/wiki/International_Development_Research_Centre" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "idrc" -} diff --git a/organisation/iek.json b/organisation/iek.json deleted file mode 100644 index 21d35002..00000000 --- a/organisation/iek.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "IEK", - "ui_label": "Climate and Energy Fund", - "description": "", - "acronyms": [], - "aliases": [], - "established": 2007, - "kind": "funder", - "labels": [ - "Climate and Energy Fund", - "Klima und Energiefonds" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "AT", - "country_name": "Austria", - "country_subdivision_code": "9", - "country_subdivision_name": "Vienna", - "lat": 48.20849, - "lng": 16.37208, - "name": "Vienna", - "@type": "wcrp:location", - "@id": "universal:location/044ym4p17" - } - ], - "ror": "044ym4p17", - "url": [ - "https://www.klimafonds.gv.at/home-en-US/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iek" -} diff --git a/organisation/ifca.json b/organisation/ifca.json deleted file mode 100644 index b4e4eee6..00000000 --- a/organisation/ifca.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "IFCA", - "ui_label": "Instituto de Física de Cantabria", - "description": "", - "acronyms": [ - "IFCA" - ], - "aliases": [ - "Institute of Physics of Cantabria" - ], - "established": 1995, - "kind": "facility", - "labels": [ - "Instituto de Física de Cantabria" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "CB", - "country_subdivision_name": "Cantabria", - "lat": 43.46472, - "lng": -3.80444, - "name": "Santander", - "@type": "wcrp:location", - "@id": "universal:location/040kx1j83" - } - ], - "ror": "040kx1j83", - "url": [ - "https://ifca.unican.es" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ifca" -} diff --git a/organisation/ifm-geomar.json b/organisation/ifm-geomar.json deleted file mode 100644 index dfd4ea37..00000000 --- a/organisation/ifm-geomar.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "IFM-GEOMAR", - "ui_label": "GEOMAR Helmholtz Centre for Ocean Research Kiel", - "description": "", - "acronyms": [ - "IFM-GEOMAR" - ], - "aliases": [ - "Leibniz Institute of Marine Sciences" - ], - "established": 2004, - "kind": "Facility", - "labels": [ - "GEOMAR Helmholtz-Zentrum für Ozeanforschung Kiel" - ], - "location": { - "city": "Kiel", - "country": [ - "Germany", - "DE" - ], - "lat": 54.32133, - "lon": 10.13489, - "@type": "esgf:location", - "@id": "universal:location/02h2x0161" - }, - "ror": "02h2x0161", - "url": [ - "https://www.geomar.de" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ifm-geomar" -} diff --git a/organisation/ifremer.json b/organisation/ifremer.json deleted file mode 100644 index c6e90cd0..00000000 --- a/organisation/ifremer.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "IFREMER", - "ui_label": "Ifremer", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1984, - "kind": "facility", - "labels": [ - "French Research Institute for Exploitation of the Sea", - "Ifremer", - "Institut Français de Recherche pour l'Exploitation de la Mer" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "BRE", - "country_subdivision_name": "Brittany", - "lat": 48.39029, - "lng": -4.48628, - "name": "Brest", - "@type": "wcrp:location", - "@id": "universal:location/044jxhp58" - } - ], - "ror": "044jxhp58", - "url": [ - "https://www.ifremer.fr", - "https://en.wikipedia.org/wiki/IFREMER" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ifremer" -} diff --git a/organisation/igci.json b/organisation/igci.json deleted file mode 100644 index 4d3d2b83..00000000 --- a/organisation/igci.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "IGCI", - "ui_label": "Aspen Global Change Institute", - "description": "", - "acronyms": [ - "AGCI" - ], - "aliases": [], - "established": 1989, - "kind": "nonprofit", - "labels": [ - "Aspen Global Change Institute" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CO", - "country_subdivision_name": "Colorado", - "lat": 39.36887, - "lng": -107.03282, - "name": "Basalt", - "@type": "wcrp:location", - "@id": "universal:location/0217xr937" - } - ], - "ror": "0217xr937", - "url": [ - "http://www.agci.org/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "igci" -} diff --git a/organisation/iiasa.json b/organisation/iiasa.json deleted file mode 100644 index b24d5504..00000000 --- a/organisation/iiasa.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "IIASA", - "ui_label": "International Institute for Applied Systems Analysis", - "description": "", - "acronyms": [ - "IIASA" - ], - "aliases": [ - "Internationales Institut Fuer Angewandte Systemanalyse" - ], - "established": 1972, - "kind": "funder", - "labels": [ - "International Institute for Applied Systems Analysis" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "AT", - "country_name": "Austria", - "country_subdivision_code": "3", - "country_subdivision_name": "Lower Austria", - "lat": 48.06833, - "lng": 16.35607, - "name": "Laxenburg", - "@type": "wcrp:location", - "@id": "universal:location/02wfhk785" - } - ], - "ror": "02wfhk785", - "url": [ - "https://iiasa.ac.at", - "https://en.wikipedia.org/wiki/International_Institute_for_Applied_Systems_Analysis" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iiasa" -} diff --git a/organisation/iihs.json b/organisation/iihs.json deleted file mode 100644 index 9b044f2c..00000000 --- a/organisation/iihs.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "IIHS", - "ui_label": "Indian Institute for Human Settlements", - "description": "", - "acronyms": [ - "IIHS" - ], - "aliases": [], - "established": null, - "kind": "education", - "labels": [ - "Indian Institute for Human Settlements" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "KA", - "country_subdivision_name": "Karnataka", - "lat": 12.97194, - "lng": 77.59369, - "name": "Bengaluru", - "@type": "wcrp:location", - "@id": "universal:location/03s5w0e14" - } - ], - "ror": "03s5w0e14", - "url": [ - "http://iihs.co.in/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iihs" -} diff --git a/organisation/iis.json b/organisation/iis.json deleted file mode 100644 index e4912ec7..00000000 --- a/organisation/iis.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "IIS", - "ui_label": "Indian Institute of Soil Science", - "description": "", - "acronyms": [ - "IISS" - ], - "aliases": [], - "established": 1988, - "kind": "facility", - "labels": [ - "Indian Institute of Soil Science", - "भाकृअनुप-भारतीय मृदा विज्ञान संस्थान" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MP", - "country_subdivision_name": "Madhya Pradesh", - "lat": 23.25469, - "lng": 77.40289, - "name": "Bhopal", - "@type": "wcrp:location", - "@id": "universal:location/05j873a45" - } - ], - "ror": "05j873a45", - "url": [ - "http://www.iiss.nic.in/index.html", - "https://en.wikipedia.org/wiki/Indian_Institute_of_Soil_Science" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iis" -} diff --git a/organisation/iiser.json b/organisation/iiser.json deleted file mode 100644 index f3970165..00000000 --- a/organisation/iiser.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "IISER", - "ui_label": "Indian Institute of Science Education and Research Pune", - "description": "", - "acronyms": [ - "IISERs" - ], - "aliases": [], - "established": 2006, - "kind": "education", - "labels": [ - "Indian Institute of Science Education and Research Pune", - "भारतीय विज्ञान शिक्षा एवं अनुसंधान संस्थान, पुणे" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MH", - "country_subdivision_name": "Maharashtra", - "lat": 18.51957, - "lng": 73.85535, - "name": "Pune", - "@type": "wcrp:location", - "@id": "universal:location/028qa3n13" - } - ], - "ror": "028qa3n13", - "url": [ - "http://www.iiserpune.ac.in/", - "https://en.wikipedia.org/wiki/Indian_Institute_of_Science_Education_and_Research,_Pune" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iiser" -} diff --git a/organisation/iit.json b/organisation/iit.json deleted file mode 100644 index d1c37351..00000000 --- a/organisation/iit.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "IIT", - "ui_label": "Indian Institute of Technology Roorkee", - "description": "", - "acronyms": [ - "IITR" - ], - "aliases": [ - "IIT Roorkee", - "University of Roorkee" - ], - "established": 1847, - "kind": "education", - "labels": [ - "Indian Institute of Technology Roorkee", - "भारतीय प्रौद्योगिकी संस्थान रुड़की", - "இந்திய தொழில்நுட்பக் கழகம் ரூர்க்கி", - "ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ టెక్నాలజీ రూర్కీ", - "ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി റൂർക്കി" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "UK", - "country_subdivision_name": "Uttarakhand", - "lat": 29.86632, - "lng": 77.89118, - "name": "Roorkee", - "@type": "wcrp:location", - "@id": "universal:location/00582g326" - } - ], - "ror": "00582g326", - "url": [ - "http://www.iitr.ac.in/", - "http://en.wikipedia.org/wiki/Indian_Institute_of_Technology_Roorkee" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iit" -} diff --git a/organisation/iitm.json b/organisation/iitm.json deleted file mode 100644 index 93e5abd2..00000000 --- a/organisation/iitm.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "IITM", - "ui_label": "Indian Institute of Tropical Meteorology", - "description": "", - "acronyms": [ - "IITM" - ], - "aliases": [], - "established": 1962, - "kind": "facility", - "labels": [ - "Indian Institute of Tropical Meteorology", - "भारतीय उष्णप्रदेशीय हवामानशास्त्र संस्था" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "MH", - "country_subdivision_name": "Maharashtra", - "lat": 18.51957, - "lng": 73.85535, - "name": "Pune", - "@type": "wcrp:location", - "@id": "universal:location/03jf2m686" - } - ], - "ror": "03jf2m686", - "url": [ - "http://www.tropmet.res.in/", - "https://en.wikipedia.org/wiki/Indian_Institute_of_Tropical_Meteorology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iitm" -} diff --git a/organisation/imperialcollege.json b/organisation/imperialcollege.json deleted file mode 100644 index fd4dc15a..00000000 --- a/organisation/imperialcollege.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "ImperialCollege", - "ui_label": "Imperial College London", - "description": "", - "acronyms": [], - "aliases": [ - "Imperial College of Science, Technology and Medicine" - ], - "established": 1907, - "kind": "Education", - "labels": [ - "Coleg Imperial Llundain" - ], - "location": { - "city": "London", - "country": [ - "United Kingdom", - "GB" - ], - "lat": 51.50853, - "lon": -0.12574, - "@type": "esgf:location", - "@id": "universal:location/041kmwe10" - }, - "ror": "041kmwe10", - "url": [ - "https://www.imperial.ac.uk" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "imperialcollege" -} diff --git a/organisation/ingv.json b/organisation/ingv.json deleted file mode 100644 index 6f148b46..00000000 --- a/organisation/ingv.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "INGV", - "ui_label": "Istituto Nazionale di Geofisica e Vulcanologia", - "description": "", - "acronyms": [ - "INGV" - ], - "aliases": [ - "National Institute of Geophysics and Volcanology" - ], - "established": 1999, - "kind": "facility", - "labels": [ - "Istituto Nazionale di Geofisica e Vulcanologia" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "62", - "country_subdivision_name": "Lazio", - "lat": 41.89193, - "lng": 12.51133, - "name": "Rome", - "@type": "wcrp:location", - "@id": "universal:location/00qps9a02" - } - ], - "ror": "00qps9a02", - "url": [ - "http://www.ingv.it", - "https://en.wikipedia.org/wiki/National_Institute_of_Geophysics_and_Volcanology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ingv" -} diff --git a/organisation/inm.json b/organisation/inm.json deleted file mode 100644 index 30799c74..00000000 --- a/organisation/inm.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "INM", - "ui_label": "Institute of Sociology", - "description": "", - "acronyms": [ - "ISRAS" - ], - "aliases": [ - "Federal State Institution of Science Institute of Sociology of the Russian Academy of Sciences", - "Institut Sotsiologii RAN", - "Sociological institute of Russian Academy of Science" - ], - "established": 1968, - "kind": "facility", - "labels": [ - "Institute of Sociology", - "Институт социологии РАН" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "RU", - "country_name": "Russia", - "country_subdivision_code": "MOW", - "country_subdivision_name": "Moscow", - "lat": 55.75222, - "lng": 37.61556, - "name": "Moscow", - "@type": "wcrp:location", - "@id": "universal:location/00wfve797" - } - ], - "ror": "00wfve797", - "url": [ - "http://www.isras.org/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "inm" -} diff --git a/organisation/inmet.json b/organisation/inmet.json deleted file mode 100644 index 00eb73c5..00000000 --- a/organisation/inmet.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "INMET", - "ui_label": "National Institute of Meteorology", - "description": "", - "acronyms": [ - "NIM" - ], - "aliases": [ - "Department of Meteorology", - "National Service of Meteorology" - ], - "established": 1974, - "kind": "facility", - "labels": [ - "Institut National de la Météorologie", - "National Institute of Meteorology" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "TN", - "country_name": "Tunisia", - "country_subdivision_code": "11", - "country_subdivision_name": "Tunis Governorate", - "lat": 36.81897, - "lng": 10.16579, - "name": "Tunis", - "@type": "wcrp:location", - "@id": "universal:location/03m6sha91" - } - ], - "ror": "03m6sha91", - "url": [ - "https://www.meteo.tn" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "inmet" -} diff --git a/organisation/inpa.json b/organisation/inpa.json deleted file mode 100644 index e9b4da83..00000000 --- a/organisation/inpa.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "INPA", - "ui_label": "Instituto Nacional de Pesquisas da Amazônia", - "description": "", - "acronyms": [ - "INPA" - ], - "aliases": [], - "established": 1952, - "kind": "facility", - "labels": [ - "Instituto Nacional de Pesquisas da Amazônia", - "National Institute of Amazonian Research" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "AM", - "country_subdivision_name": "Amazonas", - "lat": -3.10194, - "lng": -60.025, - "name": "Manaus", - "@type": "wcrp:location", - "@id": "universal:location/01xe86309" - } - ], - "ror": "01xe86309", - "url": [ - "https://www.gov.br/inpa/pt-br", - "https://en.wikipedia.org/wiki/National_Institute_of_Amazonian_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "inpa" -} diff --git a/organisation/inpe.json b/organisation/inpe.json deleted file mode 100644 index 7048fb19..00000000 --- a/organisation/inpe.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "INPE", - "ui_label": "Instituto Nacional de Pesquisas Espaciais", - "description": "", - "acronyms": [ - "INPE" - ], - "aliases": [], - "established": 1971, - "kind": "facility", - "labels": [ - "Instituto Nacional de Pesquisas Espaciais", - "National Institute for Space Research" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "SP", - "country_subdivision_name": "São Paulo", - "lat": -23.17944, - "lng": -45.88694, - "name": "São José dos Campos", - "@type": "wcrp:location", - "@id": "universal:location/04xbn6x09" - } - ], - "ror": "04xbn6x09", - "url": [ - "https://www.gov.br/inpe/pt-br", - "https://en.wikipedia.org/wiki/National_Institute_for_Space_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "inpe" -} diff --git a/organisation/inrae.json b/organisation/inrae.json deleted file mode 100644 index d303f015..00000000 --- a/organisation/inrae.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "INRAE", - "ui_label": "Institut National de la Recherche Agronomique", - "description": "", - "acronyms": [ - "INRA" - ], - "aliases": [], - "established": 1946, - "kind": "facility", - "labels": [ - "Institut National de la Recherche Agronomique" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "MA", - "country_name": "Morocco", - "country_subdivision_code": "04", - "country_subdivision_name": "Rabat-Salé-Kénitra", - "lat": 34.01325, - "lng": -6.83255, - "name": "Rabat", - "@type": "wcrp:location", - "@id": "universal:location/05y503v71" - } - ], - "ror": "05y503v71", - "url": [ - "http://www.inra.org.ma/accueil1.asp?codelangue=23&po=2", - "https://en.wikipedia.org/wiki/Institut_national_de_la_recherche_agronomique" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "inrae" -} diff --git a/organisation/iow.json b/organisation/iow.json deleted file mode 100644 index 7aa6a4f6..00000000 --- a/organisation/iow.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "IOW", - "ui_label": "Leibniz Institute for Baltic Sea Research Warnemünde", - "description": "", - "acronyms": [ - "IOW" - ], - "aliases": [ - "Leibniz Institute for Baltic Sea Research" - ], - "established": 1992, - "kind": "facility", - "labels": [ - "Leibniz Institute for Baltic Sea Research Warnemünde", - "Leibniz-Institut für Ostseeforschung Warnemünde" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "MV", - "country_subdivision_name": "Mecklenburg-Vorpommern", - "lat": 54.1767, - "lng": 12.08402, - "name": "Warnemünde", - "@type": "wcrp:location", - "@id": "universal:location/03xh9nq73" - } - ], - "ror": "03xh9nq73", - "url": [ - "https://www.io-warnemuende.de", - "https://en.wikipedia.org/wiki/Leibniz_Institute_for_Baltic_Sea_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "iow" -} diff --git a/organisation/ipcc.json b/organisation/ipcc.json deleted file mode 100644 index b6fe02b0..00000000 --- a/organisation/ipcc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "IPCC", - "ui_label": "Intergovernmental Panel on Climate Change", - "description": "", - "acronyms": [ - "IPCC" - ], - "aliases": [], - "established": 1988, - "kind": "government", - "labels": [ - "Intergovernmental Panel on Climate Change" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "GE", - "country_subdivision_name": "Geneva", - "lat": 46.20222, - "lng": 6.14569, - "name": "Geneva", - "@type": "wcrp:location", - "@id": "universal:location/02x228738" - } - ], - "ror": "02x228738", - "url": [ - "https://www.ipcc.ch/", - "https://en.wikipedia.org/wiki/Intergovernmental_Panel_on_Climate_Change" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ipcc" -} diff --git a/organisation/ipsl.json b/organisation/ipsl.json deleted file mode 100644 index 228c63ca..00000000 --- a/organisation/ipsl.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "IPSL", - "ui_label": "Institut Pierre-Simon Laplace", - "description": "", - "acronyms": [ - "IPSL" - ], - "aliases": [], - "established": 1991, - "kind": "facility", - "labels": [ - "Institut Pierre-Simon Laplace" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "IDF", - "country_subdivision_name": "Île-de-France", - "lat": 48.85341, - "lng": 2.3488, - "name": "Paris", - "@type": "wcrp:location", - "@id": "universal:location/02haar591" - } - ], - "ror": "02haar591", - "url": [ - "https://www.ipsl.fr/en/", - "https://en.wikipedia.org/wiki/Institut_Pierre_Simon_Laplace" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ipsl" -} diff --git a/organisation/ird.json b/organisation/ird.json deleted file mode 100644 index 648cfb71..00000000 --- a/organisation/ird.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "IRD", - "ui_label": "Institut de Recherche pour le Développement", - "description": "", - "acronyms": [ - "IRD" - ], - "aliases": [], - "established": 1937, - "kind": "government", - "labels": [ - "Institut de Recherche pour le Développement" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "CG", - "country_name": "Congo Republic", - "country_subdivision_code": "BZV", - "country_subdivision_name": "Brazzaville", - "lat": -4.26613, - "lng": 15.28318, - "name": "Brazzaville", - "@type": "wcrp:location", - "@id": "universal:location/00bnthp71" - } - ], - "ror": "00bnthp71", - "url": [ - "http://www.congo.ird.fr/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ird" -} diff --git a/organisation/isdr.json b/organisation/isdr.json deleted file mode 100644 index d2cb4b50..00000000 --- a/organisation/isdr.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "ISDR", - "ui_label": "Institute for Sustainable Development", - "description": "", - "acronyms": [ - "ISD" - ], - "aliases": [ - "Inštitut za Trajnostni Razvoj" - ], - "established": 1995, - "kind": "nonprofit", - "labels": [ - "Institute for Sustainable Development" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "SI", - "country_name": "Slovenia", - "country_subdivision_code": "061", - "country_subdivision_name": "Ljubljana", - "lat": 46.05108, - "lng": 14.50513, - "name": "Ljubljana", - "@type": "wcrp:location", - "@id": "universal:location/02x3nwd23" - } - ], - "ror": "02x3nwd23", - "url": [ - "http://www.itr.si/home" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "isdr" -} diff --git a/organisation/ism.json b/organisation/ism.json deleted file mode 100644 index ce261ced..00000000 --- a/organisation/ism.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "ISM", - "ui_label": "The Institute of Statistical Mathematics", - "description": "", - "acronyms": [ - "ISM" - ], - "aliases": [], - "established": 2003, - "kind": "facility", - "labels": [ - "The Institute of Statistical Mathematics", - "統計数理研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "13", - "country_subdivision_name": "Tokyo", - "lat": 35.6895, - "lng": 139.69171, - "name": "Tokyo", - "@type": "wcrp:location", - "@id": "universal:location/03jcejr58" - } - ], - "ror": "03jcejr58", - "url": [ - "https://www.ism.ac.jp", - "https://en.wikipedia.org/wiki/Institute_of_Statistical_Mathematics" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ism" -} diff --git a/organisation/issi.json b/organisation/issi.json deleted file mode 100644 index 0e917bca..00000000 --- a/organisation/issi.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "ISSI", - "ui_label": "International Space Science Institute", - "description": "", - "acronyms": [ - "ISSI" - ], - "aliases": [], - "established": 1995, - "kind": "Nonprofit", - "labels": [], - "location": { - "city": "Bern", - "country": [ - "Switzerland", - "CH" - ], - "lat": 46.94809, - "lon": 7.44744, - "@type": "esgf:location", - "@id": "universal:location/01xm30661" - }, - "ror": "01xm30661", - "url": [ - "http://www.issibern.ch/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "issi" -} diff --git a/organisation/ist.json b/organisation/ist.json deleted file mode 100644 index aac209c9..00000000 --- a/organisation/ist.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "IST", - "ui_label": "Institute of Space Technology", - "description": "", - "acronyms": [ - "IST" - ], - "aliases": [], - "established": 2002, - "kind": "education", - "labels": [ - "Institute of Space Technology", - "انسٹی ٹیوٹ آف اسپیس ٹیکنالوجی" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "PK", - "country_name": "Pakistan", - "country_subdivision_code": "IS", - "country_subdivision_name": "Islamabad", - "lat": 33.72148, - "lng": 73.04329, - "name": "Islamabad", - "@type": "wcrp:location", - "@id": "universal:location/01tmmzv45" - } - ], - "ror": "01tmmzv45", - "url": [ - "http://ist.edu.pk/", - "https://en.wikipedia.org/wiki/Institute_of_Space_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ist" -} diff --git a/organisation/isu.json b/organisation/isu.json deleted file mode 100644 index 19cc75d2..00000000 --- a/organisation/isu.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "ISU", - "ui_label": "Iowa State University", - "description": "", - "acronyms": [ - "ISU" - ], - "aliases": [ - "Iowa State" - ], - "established": 1858, - "kind": "education", - "labels": [ - "Iowa State University", - "Universidad Estatal de Iowa", - "Université d'État de l'Iowa" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "IA", - "country_subdivision_name": "Iowa", - "lat": 42.03471, - "lng": -93.61994, - "name": "Ames", - "@type": "wcrp:location", - "@id": "universal:location/04rswrd78" - } - ], - "ror": "04rswrd78", - "url": [ - "https://www.iastate.edu", - "http://en.wikipedia.org/wiki/Iowa_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "isu" -} diff --git a/organisation/itm.json b/organisation/itm.json deleted file mode 100644 index 17ffb820..00000000 --- a/organisation/itm.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "ITM", - "ui_label": "Instituto Tecnológico Metropolitano", - "description": "", - "acronyms": [ - "ITM" - ], - "aliases": [], - "established": 1992, - "kind": "education", - "labels": [ - "Instituto Tecnológico Metropolitano" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "CO", - "country_name": "Colombia", - "country_subdivision_code": "ANT", - "country_subdivision_name": "Antioquia", - "lat": 6.25184, - "lng": -75.56359, - "name": "Medellín", - "@type": "wcrp:location", - "@id": "universal:location/03zb5p722" - } - ], - "ror": "03zb5p722", - "url": [ - "http://www.itm.edu.co/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "itm" -} diff --git a/organisation/jamstec.json b/organisation/jamstec.json deleted file mode 100644 index 90eb700c..00000000 --- a/organisation/jamstec.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "JAMSTEC", - "ui_label": "Japan Agency for Marine-Earth Science and Technology", - "description": "", - "acronyms": [ - "JAMSTEC" - ], - "aliases": [ - "Dokuritsu-gyōsei-hōjin Kaiyō Kenkyū Kaihatsu Kikō" - ], - "established": 1971, - "kind": "facility", - "labels": [ - "Japan Agency for Marine-Earth Science and Technology", - "海洋研究開発機構" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "14", - "country_subdivision_name": "Kanagawa", - "lat": 35.28361, - "lng": 139.66722, - "name": "Yokosuka", - "@type": "wcrp:location", - "@id": "universal:location/059qg2m13" - } - ], - "ror": "059qg2m13", - "url": [ - "http://www.jamstec.go.jp/e/", - "https://en.wikipedia.org/wiki/Japan_Agency_for_Marine-Earth_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "jamstec" -} diff --git a/organisation/jaxa.json b/organisation/jaxa.json deleted file mode 100644 index 262c0af5..00000000 --- a/organisation/jaxa.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "JAXA", - "ui_label": "Japan Aerospace Exploration Agency", - "description": "", - "acronyms": [ - "JAXA" - ], - "aliases": [ - "Dokuritsu-gyōsei-hōjin Uchū Kōkū Kenkyū Kaihatsu Kikō", - "Independent Administrative Institution on Aerospace Research and Development" - ], - "established": 2003, - "kind": "facility", - "labels": [ - "Japan Aerospace Exploration Agency", - "宇宙航空研究開発機構" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "13", - "country_subdivision_name": "Tokyo", - "lat": 35.6895, - "lng": 139.69171, - "name": "Tokyo", - "@type": "wcrp:location", - "@id": "universal:location/059yhyy33" - } - ], - "ror": "059yhyy33", - "url": [ - "https://www.jaxa.jp", - "https://en.wikipedia.org/wiki/JAXA" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "jaxa" -} diff --git a/organisation/jcu.json b/organisation/jcu.json deleted file mode 100644 index f94ae8b3..00000000 --- a/organisation/jcu.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "JCU", - "ui_label": "James Cook University", - "description": "", - "acronyms": [ - "JCU" - ], - "aliases": [], - "established": 1961, - "kind": "education", - "labels": [ - "James Cook University" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "QLD", - "country_subdivision_name": "Queensland", - "lat": -19.26639, - "lng": 146.80569, - "name": "Townsville", - "@type": "wcrp:location", - "@id": "universal:location/04gsp2c11" - } - ], - "ror": "04gsp2c11", - "url": [ - "http://www.jcu.edu.au/", - "http://en.wikipedia.org/wiki/James_Cook_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "jcu" -} diff --git a/organisation/jgcri.json b/organisation/jgcri.json deleted file mode 100644 index f8d5c4a7..00000000 --- a/organisation/jgcri.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "JGCRI", - "ui_label": "Joint Global Change Research Institute", - "description": "", - "acronyms": [ - "JGCRI" - ], - "aliases": [], - "established": 2001, - "kind": "facility", - "labels": [ - "Joint Global Change Research Institute" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MD", - "country_subdivision_name": "Maryland", - "lat": 38.96344, - "lng": -76.93164, - "name": "Riverdale Park", - "@type": "wcrp:location", - "@id": "universal:location/058cmd703" - } - ], - "ror": "058cmd703", - "url": [ - "https://www.pnnl.gov/projects/jgcri", - "https://en.wikipedia.org/wiki/Joint_Global_Change_Research_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "jgcri" -} diff --git a/organisation/kaist.json b/organisation/kaist.json deleted file mode 100644 index 07992e7c..00000000 --- a/organisation/kaist.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "KAIST", - "ui_label": "Korea Advanced Institute of Science and Technology", - "description": "", - "acronyms": [ - "KAIST" - ], - "aliases": [], - "established": 1971, - "kind": "education", - "labels": [ - "Korea Advanced Institute of Science and Technology", - "한국과학기술원" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "30", - "country_subdivision_name": "Daejeon", - "lat": 36.34913, - "lng": 127.38493, - "name": "Daejeon", - "@type": "wcrp:location", - "@id": "universal:location/05apxxy63" - } - ], - "ror": "05apxxy63", - "url": [ - "https://www.kaist.ac.kr", - "http://en.wikipedia.org/wiki/KAIST" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kaist" -} diff --git a/organisation/kaust.json b/organisation/kaust.json deleted file mode 100644 index 15c9dcce..00000000 --- a/organisation/kaust.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "KAUST", - "ui_label": "King Abdullah University of Science and Technology", - "description": "", - "acronyms": [ - "KAUST" - ], - "aliases": [], - "established": 2009, - "kind": "education", - "labels": [ - "King Abdullah University of Science and Technology", - "جامعة الملك عبد الله للعلوم والتقنية" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "SA", - "country_name": "Saudi Arabia", - "country_subdivision_code": "02", - "country_subdivision_name": "Mecca Region", - "lat": 21.49012, - "lng": 39.18624, - "name": "Jeddah", - "@type": "wcrp:location", - "@id": "universal:location/01q3tbs38" - } - ], - "ror": "01q3tbs38", - "url": [ - "https://www.kaust.edu.sa", - "http://en.wikipedia.org/wiki/King_Abdullah_University_of_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kaust" -} diff --git a/organisation/kcl.json b/organisation/kcl.json deleted file mode 100644 index 7daa684f..00000000 --- a/organisation/kcl.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "KCL", - "ui_label": "King's College London", - "description": "", - "acronyms": [ - "KCL" - ], - "aliases": [], - "established": 1829, - "kind": "education", - "labels": [ - "Coleg y Brenin, Llundain", - "King's College London" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/0220mzb33" - } - ], - "ror": "0220mzb33", - "url": [ - "http://www.kcl.ac.uk/index.aspx", - "http://en.wikipedia.org/wiki/King's_College_London" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kcl" -} diff --git a/organisation/kiost.json b/organisation/kiost.json deleted file mode 100644 index e71885e8..00000000 --- a/organisation/kiost.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "KIOST", - "ui_label": "Korea Institute of Ocean Science and Technology", - "description": "", - "acronyms": [ - "KIOST" - ], - "aliases": [ - "Korean Ocean Research and Development Institute" - ], - "established": 1973, - "kind": "facility", - "labels": [ - "Korea Institute of Ocean Science and Technology" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "26", - "country_subdivision_name": "Busan", - "lat": 35.10168, - "lng": 129.03004, - "name": "Busan", - "@type": "wcrp:location", - "@id": "universal:location/032m55064" - } - ], - "ror": "032m55064", - "url": [ - "http://eng.kiost.ac/", - "https://en.wikipedia.org/wiki/Korean_Institute_of_Ocean_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kiost" -} diff --git a/organisation/kit.json b/organisation/kit.json deleted file mode 100644 index 172b27ee..00000000 --- a/organisation/kit.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "KIT", - "ui_label": "Karlsruhe Institute of Technology", - "description": "", - "acronyms": [ - "KIT" - ], - "aliases": [ - "Das Karlsruher Institut für Technologie (KIT) – Die Forschungsuniversität in der Helmholtz-Gemeinschaft", - "Karlsruhe Institute of Technology - The Research University in the Helmholtz Association" - ], - "established": 2009, - "kind": "education", - "labels": [ - "Karlsruhe Institute of Technology", - "Karlsruher Institut für Technologie" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BW", - "country_subdivision_name": "Baden-Wurttemberg", - "lat": 49.00937, - "lng": 8.40444, - "name": "Karlsruhe", - "@type": "wcrp:location", - "@id": "universal:location/04t3en479" - } - ], - "ror": "04t3en479", - "url": [ - "https://www.kit.edu", - "http://en.wikipedia.org/wiki/Karlsruhe_Institute_of_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kit" -} diff --git a/organisation/kma.json b/organisation/kma.json deleted file mode 100644 index 40e0cce7..00000000 --- a/organisation/kma.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "KMA", - "ui_label": "Korea Meteorological Administration", - "description": "", - "acronyms": [ - "KMA" - ], - "aliases": [], - "established": 1990, - "kind": "funder", - "labels": [ - "Korea Meteorological Administration", - "기상청" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "11", - "country_subdivision_name": "Seoul", - "lat": 37.566, - "lng": 126.9784, - "name": "Seoul", - "@type": "wcrp:location", - "@id": "universal:location/04nrmrg07" - } - ], - "ror": "04nrmrg07", - "url": [ - "https://www.kma.go.kr/kma", - "https://en.wikipedia.org/wiki/Korea_Meteorological_Administration" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "kma" -} diff --git a/organisation/knmi.json b/organisation/knmi.json deleted file mode 100644 index 304f46d0..00000000 --- a/organisation/knmi.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "KNMI", - "ui_label": "Royal Netherlands Meteorological Institute", - "description": "", - "acronyms": [ - "KNMI" - ], - "aliases": [], - "established": 1854, - "kind": "funder", - "labels": [ - "Koninklijk Nederlands Meteorologisch Instituut", - "Royal Netherlands Meteorological Institute" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "UT", - "country_subdivision_name": "Utrecht", - "lat": 52.11, - "lng": 5.18056, - "name": "De Bilt", - "@type": "wcrp:location", - "@id": "universal:location/05dfgh554" - } - ], - "ror": "05dfgh554", - "url": [ - "https://www.knmi.nl", - "https://en.wikipedia.org/wiki/Royal_Netherlands_Meteorological_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "knmi" -} diff --git a/organisation/ksu.json b/organisation/ksu.json deleted file mode 100644 index b080c933..00000000 --- a/organisation/ksu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "KSU", - "ui_label": "Kansas State University", - "description": "", - "acronyms": [], - "aliases": [ - "K-State" - ], - "established": 1863, - "kind": "education", - "labels": [ - "Kansas State University", - "Universidad Estatal de Kansas", - "Université d'État du kansas" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "KS", - "country_subdivision_name": "Kansas", - "lat": 39.18361, - "lng": -96.57167, - "name": "Manhattan", - "@type": "wcrp:location", - "@id": "universal:location/05p1j8758" - } - ], - "ror": "05p1j8758", - "url": [ - "http://www.k-state.edu/", - "http://en.wikipedia.org/wiki/Kansas_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ksu" -} diff --git a/organisation/lanl.json b/organisation/lanl.json deleted file mode 100644 index 7b3a6470..00000000 --- a/organisation/lanl.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "LANL", - "ui_label": "Los Alamos National Laboratory", - "description": "", - "acronyms": [ - "LANL" - ], - "aliases": [ - "U.S. Department of Energy Los Alamos National Laboratory", - "U.S. Department of Energy National Nuclear Security Administration Los Alamos National Laboratory", - "United States Department of Energy Los Alamos National Laboratory", - "United States Department of Energy National Nuclear Security Administration Los Alamos National Laboratory" - ], - "established": 1943, - "kind": "facility", - "labels": [ - "Laboratoire national de los alamos", - "Laboratorio Nacional de Los Álamos", - "Los Alamos National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NM", - "country_subdivision_name": "New Mexico", - "lat": 35.88808, - "lng": -106.30697, - "name": "Los Alamos", - "@type": "wcrp:location", - "@id": "universal:location/01e41cf67" - } - ], - "ror": "01e41cf67", - "url": [ - "http://lanl.gov/", - "http://en.wikipedia.org/wiki/Los_Alamos_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lanl" -} diff --git a/organisation/lbnl.json b/organisation/lbnl.json deleted file mode 100644 index 249c82b8..00000000 --- a/organisation/lbnl.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "LBNL", - "ui_label": "Lawrence Berkeley National Laboratory", - "description": "", - "acronyms": [ - "LBL", - "LBNL" - ], - "aliases": [ - "Berkeley Lab", - "United States Department of Energy Office of Science Lawrence Berkeley National Laboratory" - ], - "established": 1931, - "kind": "facility", - "labels": [ - "Laboratoire national lawrence-berkeley", - "Lawrence Berkeley National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 37.87159, - "lng": -122.27275, - "name": "Berkeley", - "@type": "wcrp:location", - "@id": "universal:location/02jbv0t02" - } - ], - "ror": "02jbv0t02", - "url": [ - "https://www.lbl.gov/", - "https://en.wikipedia.org/wiki/Lawrence_Berkeley_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lbnl" -} diff --git a/organisation/liu.json b/organisation/liu.json deleted file mode 100644 index 01d00d55..00000000 --- a/organisation/liu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "LiU", - "ui_label": "Linköping University", - "description": "", - "acronyms": [ - "LiU" - ], - "aliases": [], - "established": 1969, - "kind": "education", - "labels": [ - "Linköping University", - "Linköpingin Yliopisto", - "Linköpings Universitet" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "SE", - "country_name": "Sweden", - "country_subdivision_code": "E", - "country_subdivision_name": "Östergötland", - "lat": 58.41086, - "lng": 15.62157, - "name": "Linköping", - "@type": "wcrp:location", - "@id": "universal:location/05ynxx418" - } - ], - "ror": "05ynxx418", - "url": [ - "https://liu.se/", - "http://en.wikipedia.org/wiki/Link%C3%B6ping_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "liu" -} diff --git a/organisation/llnl.json b/organisation/llnl.json deleted file mode 100644 index e2d76d2a..00000000 --- a/organisation/llnl.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "LLNL", - "ui_label": "Lawrence Livermore National Laboratory", - "description": "", - "acronyms": [ - "LLL", - "LLNL" - ], - "aliases": [ - "U.S. Department of Energy Lawrence Livermore National Laboratory", - "U.S. Department of Energy National Nuclear Security Administration Lawrence Livermore National Laboratory", - "United States Department of Energy Lawrence Livermore National Laboratory", - "United States Department of Energy National Nuclear Security Administration Lawrence Livermore National Laboratory" - ], - "established": 1952, - "kind": "facility", - "labels": [ - "Laboratorio Nacional Lawrence Livermore", - "Lawrence Livermore National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 37.68187, - "lng": -121.76801, - "name": "Livermore", - "@type": "wcrp:location", - "@id": "universal:location/041nk4h53" - } - ], - "ror": "041nk4h53", - "url": [ - "https://www.llnl.gov", - "http://en.wikipedia.org/wiki/Lawrence_Livermore_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "llnl" -} diff --git a/organisation/lmd.json b/organisation/lmd.json deleted file mode 100644 index ddac2f66..00000000 --- a/organisation/lmd.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "LMD", - "ui_label": "Laboratoire de Météorologie Dynamique", - "description": "", - "acronyms": [ - "LMD" - ], - "aliases": [ - "UMR 8539", - "UMR8539" - ], - "established": 1968, - "kind": "facility", - "labels": [ - "Laboratoire de Météorologie Dynamique" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "IDF", - "country_subdivision_name": "Île-de-France", - "lat": 48.71828, - "lng": 2.2498, - "name": "Palaiseau", - "@type": "wcrp:location", - "@id": "universal:location/000ehr937" - } - ], - "ror": "000ehr937", - "url": [ - "https://www.lmd.ipsl.fr" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lmd" -} diff --git a/organisation/lmu.json b/organisation/lmu.json deleted file mode 100644 index efaf2475..00000000 --- a/organisation/lmu.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "validation_key": "LMU", - "ui_label": "Ludwig-Maximilians-Universität München", - "description": "", - "acronyms": [ - "LMU" - ], - "aliases": [ - "LMU München", - "Ludwig Maximilian University of Munich", - "Ludwig-Maximilians-Universität in Munich", - "University of Munich", - "Universität München" - ], - "established": 1472, - "kind": "education", - "labels": [ - "Ludwig-Maximilians-Universität München" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BY", - "country_subdivision_name": "Bavaria", - "lat": 48.13743, - "lng": 11.57549, - "name": "Munich", - "@type": "wcrp:location", - "@id": "universal:location/05591te55" - } - ], - "ror": "05591te55", - "url": [ - "https://www.lmu.de", - "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lmu" -} diff --git a/organisation/lpc2e.json b/organisation/lpc2e.json deleted file mode 100644 index caef78fd..00000000 --- a/organisation/lpc2e.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "validation_key": "LPC2E", - "ui_label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", - "description": "", - "acronyms": [ - "LPC2E", - "UMR LPC2E" - ], - "aliases": [], - "established": 2012, - "kind": "Facility", - "labels": [], - "location": { - "city": "Orléans", - "country": [ - "France", - "FR" - ], - "lat": 47.90289, - "lon": 1.90389, - "@type": "esgf:location", - "@id": "universal:location/049k66y27" - }, - "ror": "049k66y27", - "url": [ - "https://www.lpc2e.cnrs.fr" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lpc2e" -} diff --git a/organisation/lsce.json b/organisation/lsce.json deleted file mode 100644 index 7642a7a0..00000000 --- a/organisation/lsce.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "validation_key": "LSCE", - "ui_label": "Laboratoire des Sciences du Climat et de l'Environnement", - "description": "", - "acronyms": [ - "LSCE", - "UMR LSCE" - ], - "aliases": [ - "Climate and Environmental Sciences Laboratory", - "UMR 8212", - "UMR Laboratoire des Sciences du Climat et de l'Environnement", - "UMR8212" - ], - "established": 2010, - "kind": "facility", - "labels": [ - "Laboratoire des Sciences du Climat et de l'Environnement" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "IDF", - "country_subdivision_name": "Île-de-France", - "lat": 48.68333, - "lng": 2.13333, - "name": "Gif-sur-Yvette", - "@type": "wcrp:location", - "@id": "universal:location/03dsd0g48" - } - ], - "ror": "03dsd0g48", - "url": [ - "https://www.lsce.ipsl.fr", - "https://en.wikipedia.org/wiki/Laboratoire_des_sciences_du_climat_et_de_l%27environnement" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lsce" -} diff --git a/organisation/lse.json b/organisation/lse.json deleted file mode 100644 index cd31371c..00000000 --- a/organisation/lse.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "LSE", - "ui_label": "London School of Economics and Political Science", - "description": "", - "acronyms": [ - "LSE" - ], - "aliases": [ - "London School of Economics" - ], - "established": 1895, - "kind": "education", - "labels": [ - "London School of Economics and Political Science", - "Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/0090zs177" - } - ], - "ror": "0090zs177", - "url": [ - "http://www.lse.ac.uk/home.aspx", - "http://en.wikipedia.org/wiki/London_School_of_Economics" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lse" -} diff --git a/organisation/lshtm.json b/organisation/lshtm.json deleted file mode 100644 index 570169da..00000000 --- a/organisation/lshtm.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "LSHTM", - "ui_label": "London School of Hygiene & Tropical Medicine", - "description": "", - "acronyms": [ - "LSHTM" - ], - "aliases": [], - "established": 1899, - "kind": "education", - "labels": [ - "London School of Hygiene & Tropical Medicine" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/00a0jsq62" - } - ], - "ror": "00a0jsq62", - "url": [ - "http://www.lshtm.ac.uk/", - "http://en.wikipedia.org/wiki/London_School_of_Hygiene_%26_Tropical_Medicine" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lshtm" -} diff --git a/organisation/lsu.json b/organisation/lsu.json deleted file mode 100644 index 00424d3e..00000000 --- a/organisation/lsu.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "LSU", - "ui_label": "Louisiana State University", - "description": "", - "acronyms": [ - "LSU" - ], - "aliases": [ - "Louisiana State University and Agricultural and Mechanical College" - ], - "established": 1860, - "kind": "education", - "labels": [ - "Louisiana State University", - "Universidad Estatal de Luisiana", - "Université d'État de Louisiane" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "LA", - "country_subdivision_name": "Louisiana", - "lat": 30.44332, - "lng": -91.18747, - "name": "Baton Rouge", - "@type": "wcrp:location", - "@id": "universal:location/05ect4e57" - } - ], - "ror": "05ect4e57", - "url": [ - "http://www.lsu.edu/", - "http://en.wikipedia.org/wiki/Louisiana_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "lsu" -} diff --git a/organisation/marn.json b/organisation/marn.json deleted file mode 100644 index 418223de..00000000 --- a/organisation/marn.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "MARN", - "ui_label": "Ministry of Natural Resources and Environment", - "description": "", - "acronyms": [], - "aliases": [ - "Ministry of Natural Resources and the Environment of the Russian Federation" - ], - "established": 2008, - "kind": "government", - "labels": [ - "Ministry of Natural Resources and Environment", - "Министерство природных ресурсов и экологии Российской Федерации" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "RU", - "country_name": "Russia", - "country_subdivision_code": "MOW", - "country_subdivision_name": "Moscow", - "lat": 55.75222, - "lng": 37.61556, - "name": "Moscow", - "@type": "wcrp:location", - "@id": "universal:location/052w5r042" - } - ], - "ror": "052w5r042", - "url": [ - "http://www.mnr.gov.ru/english/", - "https://en.wikipedia.org/wiki/Ministry_of_Natural_Resources_and_Environment_(Russia)" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "marn" -} diff --git a/organisation/metno.json b/organisation/metno.json deleted file mode 100644 index c8e0434d..00000000 --- a/organisation/metno.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "METNO", - "ui_label": "Norwegian Meteorological Institute", - "description": "", - "acronyms": [ - "MET" - ], - "aliases": [ - "MET Norway" - ], - "established": 1866, - "kind": "government", - "labels": [ - "Meteorologisk institutt", - "Norwegian Meteorological Institute" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "03", - "country_subdivision_name": "Oslo", - "lat": 59.91273, - "lng": 10.74609, - "name": "Oslo", - "@type": "wcrp:location", - "@id": "universal:location/001n36p86" - } - ], - "ror": "001n36p86", - "url": [ - "http://met.no", - "https://en.wikipedia.org/wiki/Norwegian_Meteorological_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "constants" - ], - "@id": "metno" -} diff --git a/organisation/mext.json b/organisation/mext.json deleted file mode 100644 index 0a5c8360..00000000 --- a/organisation/mext.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "MEXT", - "ui_label": "Ministry of Education, Culture, Sports, Science and Technology", - "description": "", - "acronyms": [ - "MEXT" - ], - "aliases": [ - "Monbu-kagaku-shō" - ], - "established": 1871, - "kind": "funder", - "labels": [ - "Ministry of Education, Culture, Sports, Science and Technology", - "文部科学省" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "13", - "country_subdivision_name": "Tokyo", - "lat": 35.6895, - "lng": 139.69171, - "name": "Tokyo", - "@type": "wcrp:location", - "@id": "universal:location/048rj2z13" - } - ], - "ror": "048rj2z13", - "url": [ - "http://www.mext.go.jp/english/", - "https://en.wikipedia.org/wiki/Ministry_of_Education,_Culture,_Sports,_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mext" -} diff --git a/organisation/miroc.json b/organisation/miroc.json deleted file mode 100644 index bfd52f23..00000000 --- a/organisation/miroc.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "validation_key": "MIROC", - "ui_label": "MIROC Consortium", - "description": "", - "changes": "", - "members": { - "aori": { - "from": 2016, - "to": 2022 - }, - "jamstec": { - "from": 2016, - "to": 2022 - }, - "nies": { - "from": 2016, - "to": 2022 - }, - "r-ccs": { - "from": 2016, - "to": 2022 - } - }, - "status": "active", - "url": "", - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "miroc" -} diff --git a/organisation/mit.json b/organisation/mit.json deleted file mode 100644 index 719e2ad3..00000000 --- a/organisation/mit.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "MIT", - "ui_label": "Massachusetts Institute of Technology", - "description": "", - "acronyms": [ - "MIT" - ], - "aliases": [], - "established": 1861, - "kind": "education", - "labels": [ - "Instituto Tecnológico de Massachusetts", - "Massachusetts Institute of Technology" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MA", - "country_subdivision_name": "Massachusetts", - "lat": 42.3751, - "lng": -71.10561, - "name": "Cambridge", - "@type": "wcrp:location", - "@id": "universal:location/042nb2s44" - } - ], - "ror": "042nb2s44", - "url": [ - "https://web.mit.edu", - "http://en.wikipedia.org/wiki/Massachusetts_Institute_of_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mit" -} diff --git a/organisation/mohc.json b/organisation/mohc.json deleted file mode 100644 index 4dc4ff3a..00000000 --- a/organisation/mohc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "MOHC", - "ui_label": "Met Office", - "description": "", - "acronyms": [], - "aliases": [ - "Meteorological Office" - ], - "established": 1854, - "kind": "Funder", - "labels": [], - "location": { - "city": "Exeter", - "country": [ - "United Kingdom", - "GB" - ], - "lat": 50.7236, - "lon": -3.52751, - "@type": "esgf:location", - "@id": "universal:location/01ch2yn61" - }, - "ror": "01ch2yn61", - "url": [ - "http://www.metoffice.gov.uk/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mohc" -} diff --git a/organisation/mpi-b.json b/organisation/mpi-b.json deleted file mode 100644 index 30012ace..00000000 --- a/organisation/mpi-b.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "MPI-B", - "ui_label": "Max Planck Institute for Biogeochemistry", - "description": "", - "acronyms": [ - "MPI-BGC" - ], - "aliases": [ - "MPI Biogeochemistry" - ], - "established": 1997, - "kind": "Facility", - "labels": [ - "Max-Planck-Institut für Biogeochemie" - ], - "location": { - "city": "Jena", - "country": [ - "Germany", - "DE" - ], - "lat": 50.92878, - "lon": 11.5899, - "@type": "esgf:location", - "@id": "universal:location/051yxp643" - }, - "ror": "051yxp643", - "url": [ - "https://www.bgc-jena.mpg.de" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mpi-b" -} diff --git a/organisation/mpi-bgc.json b/organisation/mpi-bgc.json deleted file mode 100644 index 40892863..00000000 --- a/organisation/mpi-bgc.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "MPI-BGC", - "ui_label": "Max Planck Institute for Biogeochemistry", - "description": "", - "acronyms": [ - "MPI-BGC" - ], - "aliases": [ - "MPI Biogeochemistry" - ], - "established": 1997, - "kind": "facility", - "labels": [ - "Max Planck Institute for Biogeochemistry", - "Max-Planck-Institut für Biogeochemie" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "TH", - "country_subdivision_name": "Thuringia", - "lat": 50.92878, - "lng": 11.5899, - "name": "Jena", - "@type": "wcrp:location", - "@id": "universal:location/051yxp643" - } - ], - "ror": "051yxp643", - "url": [ - "https://www.bgc-jena.mpg.de", - "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Biogeochemistry" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mpi-bgc" -} diff --git a/organisation/mpi-c.json b/organisation/mpi-c.json deleted file mode 100644 index 017a21b4..00000000 --- a/organisation/mpi-c.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "MPI-C", - "ui_label": "Max Planck Institute for Chemistry", - "description": "", - "acronyms": [], - "aliases": [ - "Otto Hahn Institute" - ], - "established": 1911, - "kind": "facility", - "labels": [ - "Max Planck Institut für Chemie - Otto Hahn Institut", - "Max Planck Institute for Chemistry" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "RP", - "country_subdivision_name": "Rheinland-Pfalz", - "lat": 49.98419, - "lng": 8.2791, - "name": "Mainz", - "@type": "wcrp:location", - "@id": "universal:location/02f5b7n18" - } - ], - "ror": "02f5b7n18", - "url": [ - "http://www.mpic.de/", - "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Chemistry" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mpi-c" -} diff --git a/organisation/mpi-g.json b/organisation/mpi-g.json deleted file mode 100644 index 41a8c939..00000000 --- a/organisation/mpi-g.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "MPI-G", - "ui_label": "Max Planck Institute of Geoanthropology", - "description": "", - "acronyms": [ - "MPIG" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Max Planck Institute of Geoanthropology", - "Max-Planck-Institut für Geoanthropologie" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "TH", - "country_subdivision_name": "Thuringia", - "lat": 50.92878, - "lng": 11.5899, - "name": "Jena", - "@type": "wcrp:location", - "@id": "universal:location/00js75b59" - } - ], - "ror": "00js75b59", - "url": [ - "https://www.shh.mpg.de" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mpi-g" -} diff --git a/organisation/mpi-m.json b/organisation/mpi-m.json deleted file mode 100644 index be027e28..00000000 --- a/organisation/mpi-m.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "MPI-M", - "ui_label": "Max Planck Institute for Meteorology", - "description": "", - "acronyms": [ - "MPI-M" - ], - "aliases": [], - "established": 1975, - "kind": "facility", - "labels": [ - "Max Planck Institute for Meteorology", - "Max-Planck-Institut für Meteorologie" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/05esem239" - } - ], - "ror": "05esem239", - "url": [ - "http://www.mpimet.mpg.de/en/home.html", - "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Meteorology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mpi-m" -} diff --git a/organisation/mps.json b/organisation/mps.json deleted file mode 100644 index adf4f8a9..00000000 --- a/organisation/mps.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "MPS", - "ui_label": "Max Planck Institute for Solar System Research", - "description": "", - "acronyms": [ - "MPS" - ], - "aliases": [], - "established": 1934, - "kind": "Facility", - "labels": [ - "Max-Planck-Institut für Sonnensystemforschung" - ], - "location": { - "city": "Göttingen", - "country": [ - "Germany", - "DE" - ], - "lat": 51.53443, - "lon": 9.93228, - "@type": "esgf:location", - "@id": "universal:location/02j6gm739" - }, - "ror": "02j6gm739", - "url": [ - "http://www.mps.mpg.de/en" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mps" -} diff --git a/organisation/mri.json b/organisation/mri.json deleted file mode 100644 index ac034e4e..00000000 --- a/organisation/mri.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "MRI", - "ui_label": "Meteorological Research Institute", - "description": "", - "acronyms": [], - "aliases": [ - "Kishōkenkyūsho", - "Meteorological Research Institute, Japan", - "きしょうけんきゅうしょ", - "キショウケンキュウショ", - "気象研究所" - ], - "established": 1946, - "kind": "facility", - "labels": [ - "Meteorological Research Institute", - "気象庁気象研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "08", - "country_subdivision_name": "Ibaraki", - "lat": 36.2, - "lng": 140.1, - "name": "Tsukuba", - "@type": "wcrp:location", - "@id": "universal:location/031gqrq04" - } - ], - "ror": "031gqrq04", - "url": [ - "http://www.mri-jma.go.jp", - "https://ja.wikipedia.org/wiki/%E6%B0%97%E8%B1%A1%E7%A0%94%E7%A9%B6%E6%89%80" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mri" -} diff --git a/organisation/mtu.json b/organisation/mtu.json deleted file mode 100644 index cacfd91f..00000000 --- a/organisation/mtu.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "MTU", - "ui_label": "Michigan Technological University", - "description": "", - "acronyms": [ - "MTU" - ], - "aliases": [ - "Michigan Tech" - ], - "established": 1885, - "kind": "Education", - "labels": [], - "location": { - "city": "Houghton", - "country": [ - "United States", - "US" - ], - "lat": 47.12187, - "lon": -88.56901, - "@type": "esgf:location", - "@id": "universal:location/0036rpn28" - }, - "ror": "0036rpn28", - "url": [ - "https://www.mtu.edu" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "mtu" -} diff --git "a/organisation/m\303\251t\303\251o-france.json" "b/organisation/m\303\251t\303\251o-france.json" deleted file mode 100644 index de3e0c0d..00000000 --- "a/organisation/m\303\251t\303\251o-france.json" +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "Météo-France", - "ui_label": "Météo-France", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1995, - "kind": "other", - "labels": [ - "Météo-France" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "OCC", - "country_subdivision_name": "Occitanie", - "lat": 43.60426, - "lng": 1.44367, - "name": "Toulouse", - "@type": "wcrp:location", - "@id": "universal:location/0233st365" - } - ], - "ror": "0233st365", - "url": [ - "http://www.meteofrance.com/accueil", - "https://en.wikipedia.org/wiki/M%C3%A9t%C3%A9o-France" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "météo-france" -} diff --git a/organisation/nasa-giss.json b/organisation/nasa-giss.json deleted file mode 100644 index f8427e99..00000000 --- a/organisation/nasa-giss.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "NASA-GISS", - "ui_label": "Goddard Institute for Space Studies", - "description": "", - "acronyms": [ - "GISS" - ], - "aliases": [], - "established": 1961, - "kind": "Facility", - "labels": [], - "location": { - "city": "New York", - "country": [ - "United States", - "US" - ], - "lat": 40.71427, - "lon": -74.00597, - "@type": "esgf:location", - "@id": "universal:location/01cyfxe35" - }, - "ror": "01cyfxe35", - "url": [ - "http://www.giss.nasa.gov/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nasa-giss" -} diff --git a/organisation/nasa-gsfc.json b/organisation/nasa-gsfc.json deleted file mode 100644 index 13f9b30b..00000000 --- a/organisation/nasa-gsfc.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "NASA-GSFC", - "ui_label": "Goddard Space Flight Center", - "description": "", - "acronyms": [ - "GSFC" - ], - "aliases": [], - "established": 1959, - "kind": "Facility", - "labels": [ - "Centro de Vuelo Espacial Goddard" - ], - "location": { - "city": "Greenbelt", - "country": [ - "United States", - "US" - ], - "lat": 39.00455, - "lon": -76.87553, - "@type": "esgf:location", - "@id": "universal:location/0171mag52" - }, - "ror": "0171mag52", - "url": [ - "https://www.nasa.gov/centers/goddard/home/index.html" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nasa-gsfc" -} diff --git a/organisation/nasa-jpl.json b/organisation/nasa-jpl.json deleted file mode 100644 index b1f25f79..00000000 --- a/organisation/nasa-jpl.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "validation_key": "NASA-JPL", - "ui_label": "Jet Propulsion Laboratory", - "description": "", - "acronyms": [ - "JPL" - ], - "aliases": [ - "Jet Propulsion Lab", - "Jet Propulsion Laboratory, California Institute of Technology" - ], - "established": 1936, - "kind": "Facility", - "labels": [ - "Laboratorio de Propulsión a Chorro" - ], - "location": { - "city": "La Cañada Flintridge", - "country": [ - "United States", - "US" - ], - "lat": 34.19917, - "lon": -118.18785, - "@type": "esgf:location", - "@id": "universal:location/027k65916" - }, - "ror": "027k65916", - "url": [ - "http://www.jpl.nasa.gov/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nasa-jpl" -} diff --git a/organisation/nasa-larc.json b/organisation/nasa-larc.json deleted file mode 100644 index 0cd73b72..00000000 --- a/organisation/nasa-larc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "NASA-LaRC", - "ui_label": "Langley Research Center", - "description": "", - "acronyms": [ - "LaRC" - ], - "aliases": [], - "established": 1917, - "kind": "Facility", - "labels": [], - "location": { - "city": "Hampton", - "country": [ - "United States", - "US" - ], - "lat": 37.02987, - "lon": -76.34522, - "@type": "esgf:location", - "@id": "universal:location/0399mhs52" - }, - "ror": "0399mhs52", - "url": [ - "http://www.nasa.gov/langley" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nasa-larc" -} diff --git a/organisation/nasa.json b/organisation/nasa.json deleted file mode 100644 index 07e90503..00000000 --- a/organisation/nasa.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "NASA", - "ui_label": "National Aeronautics and Space Administration", - "description": "", - "acronyms": [ - "NASA", - "NASA HQ" - ], - "aliases": [ - "Mary W. Jackson Headquarters Building", - "NASA Headquarters" - ], - "established": 1958, - "kind": "funder", - "labels": [ - "National Aeronautics and Space Administration" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "DC", - "country_subdivision_name": "District of Columbia", - "lat": 38.89511, - "lng": -77.03637, - "name": "Washington", - "@type": "wcrp:location", - "@id": "universal:location/027ka1x80" - } - ], - "ror": "027ka1x80", - "url": [ - "http://www.nasa.gov", - "http://en.wikipedia.org/wiki/NASA" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nasa" -} diff --git a/organisation/nau.json b/organisation/nau.json deleted file mode 100644 index 514185cd..00000000 --- a/organisation/nau.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NAU", - "ui_label": "Northern Arizona University", - "description": "", - "acronyms": [ - "NAU" - ], - "aliases": [ - "Arizona State College of Flagstaff" - ], - "established": 1899, - "kind": "education", - "labels": [ - "Northern Arizona University" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "AZ", - "country_subdivision_name": "Arizona", - "lat": 35.19807, - "lng": -111.65127, - "name": "Flagstaff", - "@type": "wcrp:location", - "@id": "universal:location/0272j5188" - } - ], - "ror": "0272j5188", - "url": [ - "https://www.nau.edu/", - "http://en.wikipedia.org/wiki/Northern_Arizona_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nau" -} diff --git a/organisation/ncar.json b/organisation/ncar.json deleted file mode 100644 index 4220efef..00000000 --- a/organisation/ncar.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NCAR", - "ui_label": "National Centre for Atmospheric Science", - "description": "", - "acronyms": [ - "NCAS" - ], - "aliases": [], - "established": 2002, - "kind": "funder", - "labels": [ - "National Centre for Atmospheric Science" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 53.79648, - "lng": -1.54785, - "name": "Leeds", - "@type": "wcrp:location", - "@id": "universal:location/01wwwe276" - } - ], - "ror": "01wwwe276", - "url": [ - "https://ncas.ac.uk/", - "http://en.wikipedia.org/wiki/National_Centre_for_Atmospheric_Science" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncar" -} diff --git a/organisation/ncas.json b/organisation/ncas.json deleted file mode 100644 index 8fb0f2ec..00000000 --- a/organisation/ncas.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NCAS", - "ui_label": "National Centre for Atmospheric Science", - "description": "", - "acronyms": [ - "NCAS" - ], - "aliases": [], - "established": 2002, - "kind": "funder", - "labels": [ - "National Centre for Atmospheric Science" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 53.79648, - "lng": -1.54785, - "name": "Leeds", - "@type": "wcrp:location", - "@id": "universal:location/01wwwe276" - } - ], - "ror": "01wwwe276", - "url": [ - "https://ncas.ac.uk/", - "http://en.wikipedia.org/wiki/National_Centre_for_Atmospheric_Science" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncas" -} diff --git a/organisation/ncc.json b/organisation/ncc.json deleted file mode 100644 index 3bd6dab7..00000000 --- a/organisation/ncc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "NCC", - "ui_label": "NCC Consortium", - "description": "", - "changes": "", - "members": { - "met-norway": { - "from": 2016, - "to": 2022 - }, - "nersc": { - "from": 2016, - "to": 2022 - }, - "nilu": { - "from": 2016, - "to": 2022 - }, - "noresm": { - "from": 2016, - "to": 2022 - }, - "uib": { - "from": 2016, - "to": 2022 - }, - "uio": { - "from": 2016, - "to": 2022 - }, - "uni": { - "from": 2016, - "to": 2022 - } - }, - "status": "active", - "url": "", - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncc" -} diff --git a/organisation/nceo.json b/organisation/nceo.json deleted file mode 100644 index a7fd6bf4..00000000 --- a/organisation/nceo.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "NCEO", - "ui_label": "National Centre for Earth Observation", - "description": "", - "acronyms": [ - "NCEO" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "National Centre for Earth Observation" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 52.6386, - "lng": -1.13169, - "name": "Leicester", - "@type": "wcrp:location", - "@id": "universal:location/0375jbm11" - } - ], - "ror": "0375jbm11", - "url": [ - "https://www.nceo.ac.uk/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nceo" -} diff --git a/organisation/ncep.json b/organisation/ncep.json deleted file mode 100644 index 4486d761..00000000 --- a/organisation/ncep.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "NCEP", - "ui_label": "NOAA National Centers for Environmental Prediction", - "description": "", - "acronyms": [ - "NCEP", - "NOAA NCEP" - ], - "aliases": [ - "NOAA NWS National Centers for Environmental Prediction", - "U.S. National Centers for Environmental Prediction", - "U.S. National Weather Service National Centers for Environmental Prediction", - "United States National Centers for Environmental Prediction", - "United States National Weather Service National Centers for Environmental Prediction" - ], - "established": 1994, - "kind": "government", - "labels": [ - "NOAA National Centers for Environmental Prediction" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MD", - "country_subdivision_name": "Maryland", - "lat": 38.98067, - "lng": -76.93692, - "name": "College Park", - "@type": "wcrp:location", - "@id": "universal:location/00ndyev54" - } - ], - "ror": "00ndyev54", - "url": [ - "http://www.ncep.noaa.gov/", - "https://en.wikipedia.org/wiki/National_Centers_for_Environmental_Prediction" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncep" -} diff --git a/organisation/nci.json b/organisation/nci.json deleted file mode 100644 index cb36f667..00000000 --- a/organisation/nci.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "NCI", - "ui_label": "National Computational Infrastructure", - "description": "", - "acronyms": [ - "NCI" - ], - "aliases": [ - "NCI Australia", - "National Computational Infrastructure Australia", - "National Computational Infrastructure National Facility" - ], - "established": 2007, - "kind": "facility", - "labels": [ - "National Computational Infrastructure" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "ACT", - "country_subdivision_name": "Australian Capital Territory", - "lat": -35.27767, - "lng": 149.11829, - "name": "Acton", - "@type": "wcrp:location", - "@id": "universal:location/04yx6dh41" - } - ], - "ror": "04yx6dh41", - "url": [ - "https://nci.org.au/", - "https://en.wikipedia.org/wiki/National_Computational_Infrastructure" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nci" -} diff --git a/organisation/ncm.json b/organisation/ncm.json deleted file mode 100644 index 45b7386a..00000000 --- a/organisation/ncm.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NCM", - "ui_label": "National Center for Meteorology", - "description": "", - "acronyms": [ - "NCM" - ], - "aliases": [], - "established": null, - "kind": "government", - "labels": [ - "National Center for Meteorology", - "المركز الوطني للارصاد" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "SA", - "country_name": "Saudi Arabia", - "country_subdivision_code": "02", - "country_subdivision_name": "Mecca Region", - "lat": 21.49012, - "lng": 39.18624, - "name": "Jeddah", - "@type": "wcrp:location", - "@id": "universal:location/046wpj017" - } - ], - "ror": "046wpj017", - "url": [ - "https://ncm.gov.sa/ar/Pages/default.aspx" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncm" -} diff --git a/organisation/ncstate.json b/organisation/ncstate.json deleted file mode 100644 index 095bcb95..00000000 --- a/organisation/ncstate.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NCState", - "ui_label": "North Carolina State University", - "description": "", - "acronyms": [ - "NCSU" - ], - "aliases": [], - "established": 1887, - "kind": "education", - "labels": [ - "North Carolina State University", - "Universidad Estatal de Carolina del Norte", - "Université d'État de caroline du nord" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NC", - "country_subdivision_name": "North Carolina", - "lat": 35.7721, - "lng": -78.63861, - "name": "Raleigh", - "@type": "wcrp:location", - "@id": "universal:location/04tj63d06" - } - ], - "ror": "04tj63d06", - "url": [ - "https://www.ncsu.edu/", - "http://en.wikipedia.org/wiki/North_Carolina_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ncstate" -} diff --git a/organisation/nerc.json b/organisation/nerc.json deleted file mode 100644 index ea855e1b..00000000 --- a/organisation/nerc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NERC", - "ui_label": "Natural Environment Research Council", - "description": "", - "acronyms": [ - "NERC" - ], - "aliases": [], - "established": 1965, - "kind": "funder", - "labels": [ - "Natural Environment Research Council" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.55797, - "lng": -1.78116, - "name": "Swindon", - "@type": "wcrp:location", - "@id": "universal:location/02b5d8509" - } - ], - "ror": "02b5d8509", - "url": [ - "https://www.ukri.org/councils/nerc/", - "http://en.wikipedia.org/wiki/Natural_Environment_Research_Council" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nerc" -} diff --git a/organisation/nersc.json b/organisation/nersc.json deleted file mode 100644 index 615e7e21..00000000 --- a/organisation/nersc.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "NERSC", - "ui_label": "Nansen Environmental and Remote Sensing Center", - "description": "", - "acronyms": [ - "NERSC" - ], - "aliases": [ - "Nansen Center", - "Nansensenteret" - ], - "established": 1986, - "kind": "nonprofit", - "labels": [ - "Nansen Environmental and Remote Sensing Center", - "Stiftelsen Nansen Senter For Miljö OG Fjernmåling" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "46", - "country_subdivision_name": "Vestland", - "lat": 60.39299, - "lng": 5.32415, - "name": "Bergen", - "@type": "wcrp:location", - "@id": "universal:location/05ey0h058" - } - ], - "ror": "05ey0h058", - "url": [ - "https://nersc.no" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nersc" -} diff --git a/organisation/nies.json b/organisation/nies.json deleted file mode 100644 index 16c7aab9..00000000 --- a/organisation/nies.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "NIES", - "ui_label": "National Institute for Environmental Studies", - "description": "", - "acronyms": [ - "NIES" - ], - "aliases": [ - "Kokuritsu-Kankyō kenkyūsho" - ], - "established": 2001, - "kind": "education", - "labels": [ - "National Institute for Environmental Studies", - "国立環境研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "08", - "country_subdivision_name": "Ibaraki", - "lat": 36.2, - "lng": 140.1, - "name": "Tsukuba", - "@type": "wcrp:location", - "@id": "universal:location/02hw5fp67" - } - ], - "ror": "02hw5fp67", - "url": [ - "https://www.nies.go.jp/", - "https://en.wikipedia.org/wiki/National_Institute_for_Environmental_Studies" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nies" -} diff --git a/organisation/nilu.json b/organisation/nilu.json deleted file mode 100644 index bbb851f8..00000000 --- a/organisation/nilu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NILU", - "ui_label": "NILU", - "description": "", - "acronyms": [], - "aliases": [ - "Norsk Institutt for Luftforskning", - "Norwegian Institute for Air Research" - ], - "established": 1969, - "kind": "nonprofit", - "labels": [ - "NILU", - "Stiftelsen NILU" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "02", - "country_subdivision_name": "Akershus", - "lat": 59.95597, - "lng": 11.04918, - "name": "Lillestrøm", - "@type": "wcrp:location", - "@id": "universal:location/00q7d9z06" - } - ], - "ror": "00q7d9z06", - "url": [ - "https://nilu.com", - "http://en.wikipedia.org/wiki/Norwegian_Institute_for_Air_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nilu" -} diff --git a/organisation/nimr.json b/organisation/nimr.json deleted file mode 100644 index 82a1e32d..00000000 --- a/organisation/nimr.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "NIMR", - "ui_label": "Meteorological Research Institute", - "description": "", - "acronyms": [], - "aliases": [ - "Kishōkenkyūsho", - "Meteorological Research Institute, Japan", - "きしょうけんきゅうしょ", - "キショウケンキュウショ", - "気象研究所" - ], - "established": 1946, - "kind": "facility", - "labels": [ - "Meteorological Research Institute", - "気象庁気象研究所" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "08", - "country_subdivision_name": "Ibaraki", - "lat": 36.2, - "lng": 140.1, - "name": "Tsukuba", - "@type": "wcrp:location", - "@id": "universal:location/031gqrq04" - } - ], - "ror": "031gqrq04", - "url": [ - "http://www.mri-jma.go.jp", - "https://ja.wikipedia.org/wiki/%E6%B0%97%E8%B1%A1%E7%A0%94%E7%A9%B6%E6%89%80" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nimr" -} diff --git a/organisation/nims-kma.json b/organisation/nims-kma.json deleted file mode 100644 index f0745a28..00000000 --- a/organisation/nims-kma.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NIMS-KMA", - "ui_label": "National Institute of Meteorological Sciences", - "description": "", - "acronyms": [ - "NIMS" - ], - "aliases": [], - "established": 1978, - "kind": "facility", - "labels": [ - "National Institute of Meteorological Sciences", - "국립기상과학원" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "49", - "country_subdivision_name": "Jeju-do", - "lat": 33.25333, - "lng": 126.56181, - "name": "Seogwipo", - "@type": "wcrp:location", - "@id": "universal:location/04m2hj141" - } - ], - "ror": "04m2hj141", - "url": [ - "http://www.nimr.go.kr/AE/MA/main.jsp" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nims-kma" -} diff --git a/organisation/nims.json b/organisation/nims.json deleted file mode 100644 index 04cf8bca..00000000 --- a/organisation/nims.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NIMS", - "ui_label": "National Institute of Meteorological Sciences", - "description": "", - "acronyms": [ - "NIMS" - ], - "aliases": [], - "established": 1978, - "kind": "facility", - "labels": [ - "National Institute of Meteorological Sciences", - "국립기상과학원" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "49", - "country_subdivision_name": "Jeju-do", - "lat": 33.25333, - "lng": 126.56181, - "name": "Seogwipo", - "@type": "wcrp:location", - "@id": "universal:location/04m2hj141" - } - ], - "ror": "04m2hj141", - "url": [ - "http://www.nimr.go.kr/AE/MA/main.jsp" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nims" -} diff --git a/organisation/niwa.json b/organisation/niwa.json deleted file mode 100644 index c8d52aaa..00000000 --- a/organisation/niwa.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NIWA", - "ui_label": "National Institute of Water and Atmospheric Research", - "description": "", - "acronyms": [ - "NIWA" - ], - "aliases": [ - "Taihoro Nukurangi" - ], - "established": 1992, - "kind": "facility", - "labels": [ - "National Institute of Water and Atmospheric Research" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "NZ", - "country_name": "New Zealand", - "country_subdivision_code": "AUK", - "country_subdivision_name": "Auckland", - "lat": -36.84853, - "lng": 174.76349, - "name": "Auckland", - "@type": "wcrp:location", - "@id": "universal:location/04hxcaz34" - } - ], - "ror": "04hxcaz34", - "url": [ - "https://www.niwa.co.nz/", - "https://en.wikipedia.org/wiki/National_Institute_of_Water_and_Atmospheric_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "niwa" -} diff --git a/organisation/nlr.json b/organisation/nlr.json deleted file mode 100644 index 1712bfac..00000000 --- a/organisation/nlr.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "NLR", - "ui_label": "Netherlands Aerospace Centre", - "description": "", - "acronyms": [ - "NLR" - ], - "aliases": [ - "National Aerospace Laboratory" - ], - "established": 1961, - "kind": "nonprofit", - "labels": [ - "Nationaal Lucht- en Ruimtevaartlaboratorium", - "Netherlands Aerospace Centre" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "NH", - "country_subdivision_name": "North Holland", - "lat": 52.37403, - "lng": 4.88969, - "name": "Amsterdam", - "@type": "wcrp:location", - "@id": "universal:location/022sw4578" - } - ], - "ror": "022sw4578", - "url": [ - "https://www.nlr.org", - "http://en.wikipedia.org/wiki/National_Aerospace_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nlr" -} diff --git a/organisation/noa.json b/organisation/noa.json deleted file mode 100644 index dbc756e3..00000000 --- a/organisation/noa.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NOA", - "ui_label": "National Observatory of Athens", - "description": "", - "acronyms": [ - "NOA" - ], - "aliases": [], - "established": 1842, - "kind": "facility", - "labels": [ - "Ethniko Asteroskopeio Athinon", - "National Observatory of Athens", - "Εθνικό Αστεροσκοπείο Αθηνών" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GR", - "country_name": "Greece", - "country_subdivision_code": "I", - "country_subdivision_name": "Attica", - "lat": 37.98376, - "lng": 23.72784, - "name": "Athens", - "@type": "wcrp:location", - "@id": "universal:location/03dtebk39" - } - ], - "ror": "03dtebk39", - "url": [ - "https://www.noa.gr", - "https://en.wikipedia.org/wiki/National_Observatory_of_Athens" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "noa" -} diff --git a/organisation/noaa-gfdl.json b/organisation/noaa-gfdl.json deleted file mode 100644 index 82c66c39..00000000 --- a/organisation/noaa-gfdl.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "validation_key": "NOAA-GFDL", - "ui_label": "NOAA Geophysical Fluid Dynamics Laboratory", - "description": "", - "acronyms": [ - "GFDL", - "NOAA GFDL" - ], - "aliases": [ - "Department of Commerce Geophysical Fluid Dynamics Laboratory", - "Geophysical Fluid Dynamics Laboratory", - "National Oceanic and Atmospheric Administration Geophysical Fluid Dynamics Laboratory", - "Princeton University Geophysical Fluid Dynamics Laboratory", - "U.S. Department of Commerce Geophysical Fluid Dynamics Laboratory", - "U.S. Geophysical Fluid Dynamics Laboratory", - "U.S. National Oceanic and Atmospheric Administration Geophysical Fluid Dynamics Laboratory", - "United States Department of Commerce Geophysical Fluid Dynamics Laboratory", - "United States Geophysical Fluid Dynamics Laboratory", - "United States National Oceanic and Atmospheric Administration Geophysical Fluid Dynamics Laboratory" - ], - "established": 1955, - "kind": "government", - "labels": [ - "NOAA Geophysical Fluid Dynamics Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NJ", - "country_subdivision_name": "New Jersey", - "lat": 40.34872, - "lng": -74.65905, - "name": "Princeton", - "@type": "wcrp:location", - "@id": "universal:location/03vmn1898" - } - ], - "ror": "03vmn1898", - "url": [ - "https://www.gfdl.noaa.gov", - "https://en.wikipedia.org/wiki/Geophysical_Fluid_Dynamics_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "constants" - ], - "@id": "noaa-gfdl" -} diff --git a/organisation/noaa-ncei.json b/organisation/noaa-ncei.json deleted file mode 100644 index b41516d0..00000000 --- a/organisation/noaa-ncei.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "NOAA-NCEI", - "ui_label": "NOAA National Centers for Environmental Information", - "description": "", - "acronyms": [ - "NCEI", - "NOAA NCEI" - ], - "aliases": [ - "National Centers for Environmental Information", - "National Climatic Data Center", - "U.S. National Centers for Environmental Information", - "United States National Centers for Environmental Information", - "United States National Environmental Satellites, Data, and Information Service National Centers for Environmental Information" - ], - "established": 1934, - "kind": "funder", - "labels": [ - "NOAA National Centers for Environmental Information" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NC", - "country_subdivision_name": "North Carolina", - "lat": 35.60095, - "lng": -82.55402, - "name": "Asheville", - "@type": "wcrp:location", - "@id": "universal:location/04r0wrp59" - } - ], - "ror": "04r0wrp59", - "url": [ - "https://www.ncei.noaa.gov", - "https://en.wikipedia.org/wiki/National_Centers_for_Environmental_Information" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "noaa-ncei" -} diff --git a/organisation/noaa.json b/organisation/noaa.json deleted file mode 100644 index d58b20c9..00000000 --- a/organisation/noaa.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "validation_key": "NOAA", - "ui_label": "National Oceanic and Atmospheric Administration", - "description": "", - "acronyms": [ - "NOAA" - ], - "aliases": [ - "National Oceanic & Atmospheric Administration", - "National Oceanographic and Atmospheric Administration", - "U.S. DOC National Oceanic and Atmospheric Administration", - "U.S. Department of Commerce Oceanic and Atmospheric Administration", - "U.S. Department of Commerce. National Oceanic and Atmospheric Administration", - "U.S. Dept. of Commerce National Oceanic and Atmospheric Administration", - "U.S. National Oceanic & Atmospheric Administration", - "U.S. National Oceanic and Atmospheric Administration", - "U.S. National Oceanographic Atmospheric Administration", - "U.S. National Oceanographic and Atmospheric Administration", - "U.S. Oceanic and Atmospheric Administration", - "United States Department of Commerce National Oceanic and Atmospheric Administration", - "United States Department of Commerce Oceanic and Atmospheric Administration", - "United States Dept. of Commerce National Oceanic and Atmospheric Administration", - "United States National Oceanic & Atmospheric Administration", - "United States National Oceanic and Atmospheric Administration", - "United States National Oceanographic Atmospheric Administration", - "United States National Oceanographic and Atmospheric Administration", - "United States Oceanic and Atmospheric Administration" - ], - "established": 1970, - "kind": "funder", - "labels": [ - "Administración Nacional Oceánica y Atmosférica", - "National Oceanic and Atmospheric Administration" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "DC", - "country_subdivision_name": "District of Columbia", - "lat": 38.89511, - "lng": -77.03637, - "name": "Washington", - "@type": "wcrp:location", - "@id": "universal:location/02z5nhe81" - } - ], - "ror": "02z5nhe81", - "url": [ - "http://www.noaa.gov/", - "https://en.wikipedia.org/wiki/National_Oceanic_and_Atmospheric_Administration" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "noaa" -} diff --git a/organisation/noc.json b/organisation/noc.json deleted file mode 100644 index 01b8acb9..00000000 --- a/organisation/noc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NOC", - "ui_label": "National Oceanography Centre", - "description": "", - "acronyms": [ - "NOC" - ], - "aliases": [], - "established": 2010, - "kind": "facility", - "labels": [ - "National Oceanography Centre" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 50.90395, - "lng": -1.40428, - "name": "Southampton", - "@type": "wcrp:location", - "@id": "universal:location/00874hx02" - } - ], - "ror": "00874hx02", - "url": [ - "https://noc.ac.uk", - "http://en.wikipedia.org/wiki/National_Oceanography_Centre" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "noc" -} diff --git a/organisation/norce.json b/organisation/norce.json deleted file mode 100644 index cac739a9..00000000 --- a/organisation/norce.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "NORCE", - "ui_label": "NORCE Research AS", - "description": "", - "acronyms": [ - "NORCE" - ], - "aliases": [ - "NORCE Norwegian Research Centre", - "NORCE Norwegian Research Centre AS", - "Norwegian Research Centre" - ], - "established": 2017, - "kind": "facility", - "labels": [ - "NORCE Research AS" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "46", - "country_subdivision_name": "Vestland", - "lat": 60.39299, - "lng": 5.32415, - "name": "Bergen", - "@type": "wcrp:location", - "@id": "universal:location/02gagpf75" - } - ], - "ror": "02gagpf75", - "url": [ - "https://www.norceresearch.no", - "https://en.wikipedia.org/wiki/Norwegian_Research_Centre" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "norce" -} diff --git a/organisation/nrl.json b/organisation/nrl.json deleted file mode 100644 index 46829c90..00000000 --- a/organisation/nrl.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "validation_key": "NRL", - "ui_label": "Naval Research Laboratory Optical Sciences Division", - "description": "", - "acronyms": [], - "aliases": [ - "Applied Optics Branch", - "NRL Optical Sciences Division", - "Naval Research Laboratory Applied Optics Branch", - "Naval Research Laboratory Naval Research Laboratory Optical Sciences Division", - "Naval Research Laboratory Optical Physics Branch", - "Naval Research Laboratory Optical Techniques Branch", - "Naval Research Laboratory Photonics Technology Branch", - "Optical Physics Branch", - "Optical Techniques Branch", - "Photonics Technology Branch" - ], - "established": null, - "kind": "facility", - "labels": [ - "Naval Research Laboratory Optical Sciences Division" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "DC", - "country_subdivision_name": "District of Columbia", - "lat": 38.89511, - "lng": -77.03637, - "name": "Washington", - "@type": "wcrp:location", - "@id": "universal:location/03j9xzm13" - } - ], - "ror": "03j9xzm13", - "url": [ - "https://www.nrl.navy.mil/Our-Work/Areas-of-Research/Optical-Sciences/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nrl" -} diff --git a/organisation/nsf.json b/organisation/nsf.json deleted file mode 100644 index cdaa1e11..00000000 --- a/organisation/nsf.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NSF", - "ui_label": "U.S. National Science Foundation", - "description": "", - "acronyms": [ - "NSF" - ], - "aliases": [ - "National Science Foundation" - ], - "established": 1950, - "kind": "funder", - "labels": [ - "U.S. National Science Foundation" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "VA", - "country_subdivision_name": "Virginia", - "lat": 38.80484, - "lng": -77.04692, - "name": "Alexandria", - "@type": "wcrp:location", - "@id": "universal:location/021nxhr62" - } - ], - "ror": "021nxhr62", - "url": [ - "https://www.nsf.gov", - "https://en.wikipedia.org/wiki/National_Science_Foundation" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nsf" -} diff --git a/organisation/ntnu.json b/organisation/ntnu.json deleted file mode 100644 index c2db44d1..00000000 --- a/organisation/ntnu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NTNU", - "ui_label": "Norwegian University of Science and Technology", - "description": "", - "acronyms": [ - "NTNU" - ], - "aliases": [], - "established": 1996, - "kind": "education", - "labels": [ - "Norges Teknisk-Naturvitenskapelige Universitet", - "Norjan teknis-luonnontieteellinen yliopisto", - "Norwegian University of Science and Technology" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "50", - "country_subdivision_name": "Trøndelag", - "lat": 63.43049, - "lng": 10.39506, - "name": "Trondheim", - "@type": "wcrp:location", - "@id": "universal:location/05xg72x27" - } - ], - "ror": "05xg72x27", - "url": [ - "https://www.ntnu.edu", - "http://en.wikipedia.org/wiki/Norwegian_University_of_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ntnu" -} diff --git a/organisation/ntu.json b/organisation/ntu.json deleted file mode 100644 index 12c48ff8..00000000 --- a/organisation/ntu.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "NTU", - "ui_label": "National Taiwan University", - "description": "", - "acronyms": [ - "NTU" - ], - "aliases": [], - "established": 1928, - "kind": "education", - "labels": [ - "National Taiwan University" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "TW", - "country_name": "Taiwan", - "country_subdivision_code": null, - "country_subdivision_name": "Taiwan", - "lat": 25.05306, - "lng": 121.52639, - "name": "Taipei", - "@type": "wcrp:location", - "@id": "universal:location/05bqach95" - } - ], - "ror": "05bqach95", - "url": [ - "http://www.ntu.edu.tw/english/", - "http://en.wikipedia.org/wiki/National_Taiwan_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ntu" -} diff --git a/organisation/nui.json b/organisation/nui.json deleted file mode 100644 index ea920279..00000000 --- a/organisation/nui.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "NUI", - "ui_label": "National University of Ireland", - "description": "", - "acronyms": [ - "NUI" - ], - "aliases": [], - "established": 1908, - "kind": "education", - "labels": [ - "National University of Ireland", - "Ollscoil na hÉireann" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IE", - "country_name": "Ireland", - "country_subdivision_code": "L", - "country_subdivision_name": "Leinster", - "lat": 53.33306, - "lng": -6.24889, - "name": "Dublin", - "@type": "wcrp:location", - "@id": "universal:location/00shsf120" - } - ], - "ror": "00shsf120", - "url": [ - "http://www.nui.ie/", - "http://en.wikipedia.org/wiki/National_University_of_Ireland" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nui" -} diff --git a/organisation/nuist.json b/organisation/nuist.json deleted file mode 100644 index 7b38c3fb..00000000 --- a/organisation/nuist.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "NUIST", - "ui_label": "Nanjing University of Information Science and Technology", - "description": "", - "acronyms": [ - "NUIST" - ], - "aliases": [ - "Nan Xin Da" - ], - "established": 1960, - "kind": "education", - "labels": [ - "Nanjing University of Information Science and Technology", - "南京信息工程大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "JS", - "country_subdivision_name": "Jiangsu", - "lat": 32.06167, - "lng": 118.77778, - "name": "Nanjing", - "@type": "wcrp:location", - "@id": "universal:location/02y0rxk19" - } - ], - "ror": "02y0rxk19", - "url": [ - "http://www.nuist.edu.cn", - "https://en.wikipedia.org/wiki/Nanjing_University_of_Information_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nuist" -} diff --git a/organisation/nyu.json b/organisation/nyu.json deleted file mode 100644 index c6639483..00000000 --- a/organisation/nyu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "NYU", - "ui_label": "New York University", - "description": "", - "acronyms": [ - "NYU" - ], - "aliases": [], - "established": 1831, - "kind": "education", - "labels": [ - "New York University", - "Universidad de Nueva York", - "Université de New York" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "NY", - "country_subdivision_name": "New York", - "lat": 40.71427, - "lng": -74.00597, - "name": "New York", - "@type": "wcrp:location", - "@id": "universal:location/0190ak572" - } - ], - "ror": "0190ak572", - "url": [ - "https://www.nyu.edu", - "http://en.wikipedia.org/wiki/New_York_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "nyu" -} diff --git a/organisation/ogs.json b/organisation/ogs.json deleted file mode 100644 index 272c1161..00000000 --- a/organisation/ogs.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "OGS", - "ui_label": "National Institute of Oceanography and Applied Geophysics", - "description": "", - "acronyms": [ - "OGS" - ], - "aliases": [ - "Istituto Nazionale di Oceanografia e Geofisica Sperimentale" - ], - "established": null, - "kind": "facility", - "labels": [ - "Istituto Nazionale di Oceanografia e di Geofisica Sperimentale", - "National Institute of Oceanography and Applied Geophysics" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "IT", - "country_name": "Italy", - "country_subdivision_code": "36", - "country_subdivision_name": "Friuli Venezia Giulia", - "lat": 45.64953, - "lng": 13.77678, - "name": "Trieste", - "@type": "wcrp:location", - "@id": "universal:location/04y4t7k95" - } - ], - "ror": "04y4t7k95", - "url": [ - "https://www.ogs.it" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ogs" -} diff --git a/organisation/ojeri.json b/organisation/ojeri.json deleted file mode 100644 index 0da17a62..00000000 --- a/organisation/ojeri.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "OJERI", - "ui_label": "Chilean Institute for Disaster Resilience", - "description": "", - "acronyms": [], - "aliases": [ - "Itrend" - ], - "established": 2019, - "kind": "nonprofit", - "labels": [ - "Chilean Institute for Disaster Resilience", - "Instituto para la Resiliencia ante Desastres" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "CL", - "country_name": "Chile", - "country_subdivision_code": "RM", - "country_subdivision_name": "Santiago Metropolitan", - "lat": -33.43107, - "lng": -70.60454, - "name": "Providencia", - "@type": "wcrp:location", - "@id": "universal:location/02v3vzd60" - } - ], - "ror": "02v3vzd60", - "url": [ - "https://itrend.cl" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ojeri" -} diff --git a/organisation/ornl.json b/organisation/ornl.json deleted file mode 100644 index d760135c..00000000 --- a/organisation/ornl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "ORNL", - "ui_label": "Oak Ridge National Laboratory", - "description": "", - "acronyms": [ - "ORNL" - ], - "aliases": [ - "Office of Science Oak Ridge National Laboratory", - "United States Department of Energy Office of Science Oak Ridge National Laboratory" - ], - "established": 1943, - "kind": "facility", - "labels": [ - "Oak Ridge National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "TN", - "country_subdivision_name": "Tennessee", - "lat": 36.01036, - "lng": -84.26964, - "name": "Oak Ridge", - "@type": "wcrp:location", - "@id": "universal:location/01qz5mb56" - } - ], - "ror": "01qz5mb56", - "url": [ - "https://www.ornl.gov", - "http://en.wikipedia.org/wiki/Oak_Ridge_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ornl" -} diff --git a/organisation/osu.json b/organisation/osu.json deleted file mode 100644 index a69ed8da..00000000 --- a/organisation/osu.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "OSU", - "ui_label": "Oregon State University", - "description": "", - "acronyms": [ - "OSU" - ], - "aliases": [], - "established": 1868, - "kind": "education", - "labels": [ - "Oregon State University", - "Universidad Estatal de Oregón", - "Université d'État de l'Oregon" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "OR", - "country_subdivision_name": "Oregon", - "lat": 44.56457, - "lng": -123.26204, - "name": "Corvallis", - "@type": "wcrp:location", - "@id": "universal:location/00ysfqy60" - } - ], - "ror": "00ysfqy60", - "url": [ - "https://oregonstate.edu", - "http://en.wikipedia.org/wiki/Oregon_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "osu" -} diff --git a/organisation/ouranos.json b/organisation/ouranos.json deleted file mode 100644 index 2e4d7b84..00000000 --- a/organisation/ouranos.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "Ouranos", - "ui_label": "Ouranos", - "description": "", - "acronyms": [], - "aliases": [], - "established": 2002, - "kind": "nonprofit", - "labels": [ - "Ouranos" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "QC", - "country_subdivision_name": "Quebec", - "lat": 45.50884, - "lng": -73.58781, - "name": "Montreal", - "@type": "wcrp:location", - "@id": "universal:location/0565gth98" - } - ], - "ror": "0565gth98", - "url": [ - "http://ouranos.ca/en/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ouranos" -} diff --git a/organisation/pauwes.json b/organisation/pauwes.json deleted file mode 100644 index 2404ae96..00000000 --- a/organisation/pauwes.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "PAUWES", - "ui_label": "Pan African University Institute of Water and Energy Science", - "description": "", - "acronyms": [ - "PAUWES" - ], - "aliases": [ - "PAU Institute of Water and Energy Science" - ], - "established": 2014, - "kind": "education", - "labels": [ - "Pan African University Institute of Water and Energy Science" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "DZ", - "country_name": "Algeria", - "country_subdivision_code": "13", - "country_subdivision_name": "Tlemcen", - "lat": 34.87833, - "lng": -1.315, - "name": "Tlemcen", - "@type": "wcrp:location", - "@id": "universal:location/04qe65e37" - } - ], - "ror": "04qe65e37", - "url": [ - "https://pau-au.africa/institutes/pauwes" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pauwes" -} diff --git a/organisation/pbl.json b/organisation/pbl.json deleted file mode 100644 index bfafef94..00000000 --- a/organisation/pbl.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "PBL", - "ui_label": "Netherlands Environmental Assessment Agency", - "description": "", - "acronyms": [ - "PBL" - ], - "aliases": [], - "established": 2008, - "kind": "facility", - "labels": [ - "Netherlands Environmental Assessment Agency", - "Planbureau voor de Leefomgeving" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "ZH", - "country_subdivision_name": "South Holland", - "lat": 52.07667, - "lng": 4.29861, - "name": "The Hague", - "@type": "wcrp:location", - "@id": "universal:location/052x1hs80" - } - ], - "ror": "052x1hs80", - "url": [ - "https://www.pbl.nl", - "https://en.wikipedia.org/wiki/Netherlands_Environmental_Assessment_Agency" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pbl" -} diff --git a/organisation/pcmdi.json b/organisation/pcmdi.json deleted file mode 100644 index 6d6dfcbd..00000000 --- a/organisation/pcmdi.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "PCMDI", - "ui_label": "Program for Climate Model Diagnosis and Intercomparison", - "description": "", - "acronyms": [ - "PCMDI" - ], - "aliases": [], - "established": 1989, - "kind": "Facility", - "labels": [], - "location": { - "city": "Livermore", - "country": [ - "United States", - "US" - ], - "lat": 37.68187, - "lon": -121.76801, - "@type": "esgf:location", - "@id": "universal:location/02k3nmd98" - }, - "ror": "02k3nmd98", - "url": [ - "https://pcmdi.llnl.gov" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pcmdi" -} diff --git a/organisation/pik.json b/organisation/pik.json deleted file mode 100644 index 84ade8e5..00000000 --- a/organisation/pik.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "PIK", - "ui_label": "Potsdam Institute for Climate Impact Research", - "description": "", - "acronyms": [ - "PIK" - ], - "aliases": [], - "established": 1992, - "kind": "facility", - "labels": [ - "Potsdam Institute for Climate Impact Research", - "Potsdam-Institut für Klimafolgenforschung" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BB", - "country_subdivision_name": "Brandenburg", - "lat": 52.39886, - "lng": 13.06566, - "name": "Potsdam", - "@type": "wcrp:location", - "@id": "universal:location/03e8s1d88" - } - ], - "ror": "03e8s1d88", - "url": [ - "https://www.pik-potsdam.de/", - "http://en.wikipedia.org/wiki/Potsdam_Institute_for_Climate_Impact_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pik" -} diff --git a/organisation/pmas-aaur.json b/organisation/pmas-aaur.json deleted file mode 100644 index 3f3804db..00000000 --- a/organisation/pmas-aaur.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "PMAS-AAUR", - "ui_label": "Pir Mehr Ali Shah Arid Agriculture University", - "description": "", - "acronyms": [ - "AAUR" - ], - "aliases": [ - "PMAS-Arid University" - ], - "established": 1994, - "kind": "education", - "labels": [ - "Pir Mehr Ali Shah Arid Agriculture University", - "پیر مہر علی شاہ بارانی یونیورسٹی" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "PK", - "country_name": "Pakistan", - "country_subdivision_code": "PB", - "country_subdivision_name": "Punjab", - "lat": 33.59733, - "lng": 73.0479, - "name": "Rawalpindi", - "@type": "wcrp:location", - "@id": "universal:location/035zn2q74" - } - ], - "ror": "035zn2q74", - "url": [ - "http://www.uaar.edu.pk/", - "https://en.wikipedia.org/wiki/Pir_Mehr_Ali_Shah_Arid_Agriculture_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pmas-aaur" -} diff --git a/organisation/pml.json b/organisation/pml.json deleted file mode 100644 index 49686459..00000000 --- a/organisation/pml.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "PML", - "ui_label": "Plymouth Marine Laboratory", - "description": "", - "acronyms": [ - "PML" - ], - "aliases": [], - "established": 1988, - "kind": "facility", - "labels": [ - "Plymouth Marine Laboratory" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 50.37153, - "lng": -4.14305, - "name": "Plymouth", - "@type": "wcrp:location", - "@id": "universal:location/05av9mn02" - } - ], - "ror": "05av9mn02", - "url": [ - "http://www.pml.ac.uk/", - "http://en.wikipedia.org/wiki/Plymouth_Marine_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pml" -} diff --git a/organisation/pmod.json b/organisation/pmod.json deleted file mode 100644 index f3a9cded..00000000 --- a/organisation/pmod.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "PMOD", - "ui_label": "Physikalisch-Meteorologisches Observatorium Davos", - "description": "", - "acronyms": [ - "PMOD" - ], - "aliases": [], - "established": 1907, - "kind": "Facility", - "labels": [], - "location": { - "city": "Davos", - "country": [ - "Switzerland", - "CH" - ], - "lat": 46.80429, - "lon": 9.83723, - "@type": "esgf:location", - "@id": "universal:location/02gtrqv93" - }, - "ror": "02gtrqv93", - "url": [ - "https://www.pmodwrc.ch/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pmod" -} diff --git a/organisation/pnnl-jgcri.json b/organisation/pnnl-jgcri.json deleted file mode 100644 index 63ce9d29..00000000 --- a/organisation/pnnl-jgcri.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "PNNL-JGCRI", - "ui_label": "Joint Global Change Research Institute", - "description": "", - "acronyms": [ - "JGCRI" - ], - "aliases": [], - "established": 2001, - "kind": "Facility", - "labels": [], - "location": { - "city": "Riverdale Park", - "country": [ - "United States", - "US" - ], - "lat": 38.96344, - "lon": -76.93164, - "@type": "esgf:location", - "@id": "universal:location/058cmd703" - }, - "ror": "058cmd703", - "url": [ - "https://www.pnnl.gov/projects/jgcri" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pnnl-jgcri" -} diff --git a/organisation/pnnl-waccem.json b/organisation/pnnl-waccem.json deleted file mode 100644 index eeb1e656..00000000 --- a/organisation/pnnl-waccem.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "PNNL-WACCEM", - "ui_label": "Pacific Northwest National Laboratory", - "description": "", - "acronyms": [ - "PNNL" - ], - "aliases": [ - "Office of Science Pacific Northwest National Laboratory", - "United States Department of Energy Office of Science Pacific Northwest National Laboratory" - ], - "established": 1965, - "kind": "facility", - "labels": [ - "Pacific Northwest National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "WA", - "country_subdivision_name": "Washington", - "lat": 46.28569, - "lng": -119.28446, - "name": "Richland", - "@type": "wcrp:location", - "@id": "universal:location/05h992307" - } - ], - "ror": "05h992307", - "url": [ - "http://www.pnnl.gov/", - "https://en.wikipedia.org/wiki/Pacific_Northwest_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pnnl-waccem" -} diff --git a/organisation/pnnl.json b/organisation/pnnl.json deleted file mode 100644 index 9c29ab8f..00000000 --- a/organisation/pnnl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "PNNL", - "ui_label": "Pacific Northwest National Laboratory", - "description": "", - "acronyms": [ - "PNNL" - ], - "aliases": [ - "Office of Science Pacific Northwest National Laboratory", - "United States Department of Energy Office of Science Pacific Northwest National Laboratory" - ], - "established": 1965, - "kind": "facility", - "labels": [ - "Pacific Northwest National Laboratory" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "WA", - "country_subdivision_name": "Washington", - "lat": 46.28569, - "lng": -119.28446, - "name": "Richland", - "@type": "wcrp:location", - "@id": "universal:location/05h992307" - } - ], - "ror": "05h992307", - "url": [ - "http://www.pnnl.gov/", - "https://en.wikipedia.org/wiki/Pacific_Northwest_National_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pnnl" -} diff --git a/organisation/pnu.json b/organisation/pnu.json deleted file mode 100644 index 9fbdc999..00000000 --- a/organisation/pnu.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "PNU", - "ui_label": "Pukyong National University", - "description": "", - "acronyms": [ - "PKNU" - ], - "aliases": [], - "established": 1924, - "kind": "education", - "labels": [ - "Pukyong National University", - "부경대학교" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "26", - "country_subdivision_name": "Busan", - "lat": 35.10168, - "lng": 129.03004, - "name": "Busan", - "@type": "wcrp:location", - "@id": "universal:location/0433kqc49" - } - ], - "ror": "0433kqc49", - "url": [ - "http://www.pknu.ac.kr/index.do", - "http://en.wikipedia.org/wiki/Pukyong_National_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "pnu" -} diff --git a/organisation/qccce.json b/organisation/qccce.json deleted file mode 100644 index d308622c..00000000 --- a/organisation/qccce.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "QCCCE", - "ui_label": "Basque Centre for Climate Change", - "description": "", - "acronyms": [ - "BC3", - "BERC" - ], - "aliases": [ - "Basque Excellence Research Centre" - ], - "established": 2008, - "kind": "nonprofit", - "labels": [ - "Basque Centre for Climate Change", - "Centro Vasco para el Cambio Climático", - "Klima Aldaketa Ikergai" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "PV", - "country_subdivision_name": "Basque Country", - "lat": 43.26271, - "lng": -2.92528, - "name": "Bilbao", - "@type": "wcrp:location", - "@id": "universal:location/00eqwze33" - } - ], - "ror": "00eqwze33", - "url": [ - "https://www.bc3research.org/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "qccce" -} diff --git a/organisation/qlnm.json b/organisation/qlnm.json deleted file mode 100644 index 3dd113fc..00000000 --- a/organisation/qlnm.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "QLNM", - "ui_label": "Qingdao National Laboratory for Marine Science and Technology", - "description": "", - "acronyms": [ - "QNLM" - ], - "aliases": [], - "established": 2013, - "kind": "facility", - "labels": [ - "Qingdao National Laboratory for Marine Science and Technology", - "青岛海洋科学与技术国家实验室" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "SD", - "country_subdivision_name": "Shandong", - "lat": 36.06488, - "lng": 120.38042, - "name": "Qingdao", - "@type": "wcrp:location", - "@id": "universal:location/026sv7t11" - } - ], - "ror": "026sv7t11", - "url": [ - "http://www.qnlm.ac/en/index" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "qlnm" -} diff --git a/organisation/r-ccs.json b/organisation/r-ccs.json deleted file mode 100644 index 51facc57..00000000 --- a/organisation/r-ccs.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "R-CCS", - "ui_label": "RIKEN Center for Computational Science", - "description": "", - "acronyms": [ - "CCS" - ], - "aliases": [], - "established": 2010, - "kind": "facility", - "labels": [ - "RIKEN Center for Computational Science", - "国立研究開発法人理化学研究所計算科学研究センター" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "28", - "country_subdivision_name": "Hyōgo", - "lat": 34.6913, - "lng": 135.183, - "name": "Kobe", - "@type": "wcrp:location", - "@id": "universal:location/03r519674" - } - ], - "ror": "03r519674", - "url": [ - "https://www.r-ccs.riken.jp/jp/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "r-ccs" -} diff --git a/organisation/ral.json b/organisation/ral.json deleted file mode 100644 index 4016b84c..00000000 --- a/organisation/ral.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "RAL", - "ui_label": "Rutherford Appleton Laboratory", - "description": "", - "acronyms": [ - "RAL" - ], - "aliases": [], - "established": 1957, - "kind": "facility", - "labels": [ - "Rutherford Appleton Laboratory" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.60928, - "lng": -1.24214, - "name": "Didcot", - "@type": "wcrp:location", - "@id": "universal:location/03gq8fr08" - } - ], - "ror": "03gq8fr08", - "url": [ - "http://www.stfc.ac.uk/76.aspx", - "http://en.wikipedia.org/wiki/Rutherford_Appleton_Laboratory" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ral" -} diff --git a/organisation/rcec.json b/organisation/rcec.json deleted file mode 100644 index c2a2ae59..00000000 --- a/organisation/rcec.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "RCEC", - "ui_label": "Research Center for Environmental Changes, Academia Sinica", - "description": "", - "acronyms": [ - "RCEC" - ], - "aliases": [], - "established": null, - "kind": "facility", - "labels": [ - "Research Center for Environmental Changes, Academia Sinica", - "環境變遷研究中心" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "TW", - "country_name": "Taiwan", - "country_subdivision_code": null, - "country_subdivision_name": "Taiwan", - "lat": 25.05306, - "lng": 121.52639, - "name": "Taipei", - "@type": "wcrp:location", - "@id": "universal:location/050qpg053" - } - ], - "ror": "050qpg053", - "url": [ - "http://www.rcec.sinica.edu.tw/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "rcec" -} diff --git a/organisation/rss.json b/organisation/rss.json deleted file mode 100644 index 3972b145..00000000 --- a/organisation/rss.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "RSS", - "ui_label": "Remote Sensing Systems (United States)", - "description": "", - "acronyms": [ - "RSS" - ], - "aliases": [], - "established": 1974, - "kind": "Company", - "labels": [], - "location": { - "city": "Santa Rosa", - "country": [ - "United States", - "US" - ], - "lat": 38.44047, - "lon": -122.71443, - "@type": "esgf:location", - "@id": "universal:location/01vp8h012" - }, - "ror": "01vp8h012", - "url": [ - "http://www.remss.com/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "rss" -} diff --git a/organisation/ru-core.json b/organisation/ru-core.json deleted file mode 100644 index a5f2e607..00000000 --- a/organisation/ru-core.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "RU-CORE", - "ui_label": "Ramkhamhaeng University", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1971, - "kind": "education", - "labels": [ - "Ramkhamhaeng University", - "มหาวิทยาลัยรามคำแหง" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "TH", - "country_name": "Thailand", - "country_subdivision_code": "10", - "country_subdivision_name": "Bangkok", - "lat": 13.75398, - "lng": 100.50144, - "name": "Bangkok", - "@type": "wcrp:location", - "@id": "universal:location/00mrw8k38" - } - ], - "ror": "00mrw8k38", - "url": [ - "http://www.ru.ac.th/th/", - "http://en.wikipedia.org/wiki/Ramkhamhaeng_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ru-core" -} diff --git a/organisation/rwe.json b/organisation/rwe.json deleted file mode 100644 index 28b1fddf..00000000 --- a/organisation/rwe.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "RWE", - "ui_label": "RWE (Germany)", - "description": "", - "acronyms": [ - "RWE" - ], - "aliases": [], - "established": 1898, - "kind": "company", - "labels": [ - "RWE (Germany)", - "Rheinisch-Westfälisches Elektrizitätswerk Aktiengesellschaft", - "Rhine-Westfalia Electricity Factory" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "NW", - "country_subdivision_name": "North Rhine-Westphalia", - "lat": 51.45657, - "lng": 7.01228, - "name": "Essen", - "@type": "wcrp:location", - "@id": "universal:location/05h8dpx23" - } - ], - "ror": "05h8dpx23", - "url": [ - "https://www.group.rwe/en", - "http://en.wikipedia.org/wiki/RWE" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "rwe" -} diff --git a/organisation/sal.json b/organisation/sal.json deleted file mode 100644 index 1c67f87e..00000000 --- a/organisation/sal.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "SAL", - "ui_label": "Community Involved in Sustaining Agriculture", - "description": "", - "acronyms": [ - "CISA" - ], - "aliases": [], - "established": 1993, - "kind": "nonprofit", - "labels": [ - "Community Involved in Sustaining Agriculture" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MA", - "country_subdivision_name": "Massachusetts", - "lat": 42.47731, - "lng": -72.60787, - "name": "South Deerfield", - "@type": "wcrp:location", - "@id": "universal:location/01gxqm489" - } - ], - "ror": "01gxqm489", - "url": [ - "https://www.buylocalfood.org/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "sal" -} diff --git a/organisation/sjsu.json b/organisation/sjsu.json deleted file mode 100644 index c3e02cda..00000000 --- a/organisation/sjsu.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "SJSU", - "ui_label": "San Jose State University", - "description": "", - "acronyms": [ - "SJSU" - ], - "aliases": [ - "San Jose State" - ], - "established": 1857, - "kind": "education", - "labels": [ - "San Jose State University", - "Universidad Estatal de San José", - "Université d'État de san josé" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 37.33939, - "lng": -121.89496, - "name": "San Jose", - "@type": "wcrp:location", - "@id": "universal:location/04qyvz380" - } - ], - "ror": "04qyvz380", - "url": [ - "https://sjsu.edu", - "http://en.wikipedia.org/wiki/San_Jose_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "sjsu" -} diff --git a/organisation/skye.json b/organisation/skye.json deleted file mode 100644 index 3d2b8d63..00000000 --- a/organisation/skye.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "SKYE", - "ui_label": "Finnish Environment Institute", - "description": "", - "acronyms": [ - "SYKE" - ], - "aliases": [], - "established": 1995, - "kind": "funder", - "labels": [ - "Finlands miljöcentral", - "Finnish Environment Institute", - "Suomen ympäristökeskus" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FI", - "country_name": "Finland", - "country_subdivision_code": "18", - "country_subdivision_name": "Uusimaa", - "lat": 60.16952, - "lng": 24.93545, - "name": "Helsinki", - "@type": "wcrp:location", - "@id": "universal:location/013nat269" - } - ], - "ror": "013nat269", - "url": [ - "http://www.syke.fi/en-US", - "https://en.wikipedia.org/wiki/Finnish_Environment_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "skye" -} diff --git a/organisation/smhi.json b/organisation/smhi.json deleted file mode 100644 index b03f5eec..00000000 --- a/organisation/smhi.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "SMHI", - "ui_label": "Swedish Meteorological and Hydrological Institute", - "description": "", - "acronyms": [ - "SMHI" - ], - "aliases": [ - "Sveriges Meteorologiska och Hydrologiska Institut" - ], - "established": 1971, - "kind": "funder", - "labels": [ - "Ruotsin meteorologinen ja hydrologinen laitos", - "Sveriges meteorologiska och hydrologiska institut", - "Swedish Meteorological and Hydrological Institute" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "SE", - "country_name": "Sweden", - "country_subdivision_code": "E", - "country_subdivision_name": "Östergötland", - "lat": 58.59419, - "lng": 16.1826, - "name": "Norrköping", - "@type": "wcrp:location", - "@id": "universal:location/00hgzve81" - } - ], - "ror": "00hgzve81", - "url": [ - "https://www.smhi.se", - "https://en.wikipedia.org/wiki/Swedish_Meteorological_and_Hydrological_Institute" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "smhi" -} diff --git a/organisation/smu.json b/organisation/smu.json deleted file mode 100644 index b2f3dcba..00000000 --- a/organisation/smu.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "SMU", - "ui_label": "Singapore Management University", - "description": "", - "acronyms": [ - "SMU" - ], - "aliases": [], - "established": 2000, - "kind": "education", - "labels": [ - "Singapore Management University", - "Universiti Pengurusan Singapura" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "SG", - "country_name": "Singapore", - "country_subdivision_code": null, - "country_subdivision_name": "SG.01", - "lat": 1.28967, - "lng": 103.85007, - "name": "Singapore", - "@type": "wcrp:location", - "@id": "universal:location/050qmg959" - } - ], - "ror": "050qmg959", - "url": [ - "http://www.smu.edu.sg/", - "http://en.wikipedia.org/wiki/Singapore_Management_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "smu" -} diff --git a/organisation/snu.json b/organisation/snu.json deleted file mode 100644 index 1e8e8847..00000000 --- a/organisation/snu.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "SNU", - "ui_label": "Seoul National University", - "description": "", - "acronyms": [ - "SNU" - ], - "aliases": [ - "Seoul Daehakgyo" - ], - "established": 1946, - "kind": "education", - "labels": [ - "Seoul National University", - "서울대학교" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "11", - "country_subdivision_name": "Seoul", - "lat": 37.566, - "lng": 126.9784, - "name": "Seoul", - "@type": "wcrp:location", - "@id": "universal:location/04h9pn542" - } - ], - "ror": "04h9pn542", - "url": [ - "https://www.snu.ac.kr", - "http://en.wikipedia.org/wiki/Seoul_National_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "snu" -} diff --git a/organisation/solaris-heppa.json b/organisation/solaris-heppa.json deleted file mode 100644 index eef24659..00000000 --- a/organisation/solaris-heppa.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "validation_key": "SOLARIS HEPPA", - "ui_label": "SOLARIS HEPPA Consortium", - "description": "", - "changes": "", - "members": { - "aor": { - "from": 2025, - "to": "-" - }, - "auot": { - "from": 2013, - "to": 2022 - }, - "bas": { - "from": 2013, - "to": 2022 - }, - "eawag": { - "from": 2013, - "to": 2022 - }, - "fmi": { - "from": 2013, - "to": 2022 - }, - "fuberlin": { - "from": 2013, - "to": 2022 - }, - "geomar": { - "from": 2013, - "to": 2022 - }, - "gsfc": { - "from": 2013, - "to": 2022 - }, - "iaa-csic": { - "from": 2013, - "to": 2022 - }, - "issi": { - "from": 2013, - "to": 2022 - }, - "kit": { - "from": 2013, - "to": 2022 - }, - "lasp": { - "from": 2013, - "to": 2022 - }, - "lpc2e": { - "from": 2013, - "to": 2022 - }, - "mohc": { - "from": 2013, - "to": 2022 - }, - "mps": { - "from": 2013, - "to": 2022 - }, - "ncar": { - "from": 2013, - "to": 2022 - }, - "pmod": { - "from": 2013, - "to": 2022 - }, - "uobergen": { - "from": 2025, - "to": "-" - }, - "uoleeds": { - "from": 2013, - "to": 2022 - }, - "uomontreal": { - "from": 2013, - "to": 2022 - }, - "uootago": { - "from": 2013, - "to": 2022 - }, - "uooulu": { - "from": 2025, - "to": "-" - } - }, - "url": "https://solarisheppa.geomar.de", - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "solaris-heppa" -} diff --git a/organisation/stfc.json b/organisation/stfc.json deleted file mode 100644 index 418b8437..00000000 --- a/organisation/stfc.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "STFC", - "ui_label": "Science and Technology Facilities Council", - "description": "", - "acronyms": [ - "STFC" - ], - "aliases": [], - "established": 2007, - "kind": "funder", - "labels": [ - "Science and Technology Facilities Council" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.55797, - "lng": -1.78116, - "name": "Swindon", - "@type": "wcrp:location", - "@id": "universal:location/057g20z61" - } - ], - "ror": "057g20z61", - "url": [ - "https://www.ukri.org/councils/stfc/", - "http://en.wikipedia.org/wiki/Science_and_Technology_Facilities_Council" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "stfc" -} diff --git a/organisation/swp.json b/organisation/swp.json deleted file mode 100644 index 7b05c234..00000000 --- a/organisation/swp.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "SWP", - "ui_label": "Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs", - "description": "", - "acronyms": [ - "SWP" - ], - "aliases": [], - "established": 1962, - "kind": "facility", - "labels": [ - "Stiftung Wissenschaft und Politik, Deutsches Institut für Internationale Politik und Sicherheit", - "Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BE", - "country_subdivision_name": "Berlin", - "lat": 52.52437, - "lng": 13.41053, - "name": "Berlin", - "@type": "wcrp:location", - "@id": "universal:location/05frkc804" - } - ], - "ror": "05frkc804", - "url": [ - "http://www.swp-berlin.org/en/start-en.html", - "http://en.wikipedia.org/wiki/German_Institute_for_International_and_Security_Affairs" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "swp" -} diff --git a/organisation/sysu.json b/organisation/sysu.json deleted file mode 100644 index 2f18b456..00000000 --- a/organisation/sysu.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "SYSU", - "ui_label": "Sun Yat-sen University", - "description": "", - "established": 1924, - "kind": "education", - "labels": [ - "Sun Yat-sen University", - "中山大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "GD", - "country_subdivision_name": "Guangdong", - "lat": 23.11667, - "lng": 113.25, - "name": "Guangzhou", - "@type": "wcrp:location", - "@id": "universal:location/0064kty71" - } - ], - "ror": "0064kty71", - "url": [ - "https://www.sysu.edu.cn", - "http://en.wikipedia.org/wiki/Sun_Yat-sen_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "constants" - ], - "@id": "sysu" -} diff --git a/organisation/tamu.json b/organisation/tamu.json deleted file mode 100644 index 955cd47a..00000000 --- a/organisation/tamu.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "TAMU", - "ui_label": "Texas A&M University", - "description": "", - "acronyms": [ - "TAMU" - ], - "aliases": [], - "established": 1876, - "kind": "education", - "labels": [ - "Texas A&M University" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "TX", - "country_subdivision_name": "Texas", - "lat": 30.62798, - "lng": -96.33441, - "name": "College Station", - "@type": "wcrp:location", - "@id": "universal:location/01f5ytq51" - } - ], - "ror": "01f5ytq51", - "url": [ - "https://www.tamu.edu/", - "http://en.wikipedia.org/wiki/Texas_A%26M_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tamu" -} diff --git a/organisation/tennet.json b/organisation/tennet.json deleted file mode 100644 index 0a70e720..00000000 --- a/organisation/tennet.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "TenneT", - "ui_label": "Tennet (Netherlands)", - "description": "", - "acronyms": [], - "aliases": [ - "TenneT TSO B.V" - ], - "established": 1998, - "kind": "company", - "labels": [ - "Tennet (Netherlands)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "GE", - "country_subdivision_name": "Gelderland", - "lat": 51.98, - "lng": 5.91111, - "name": "Arnhem", - "@type": "wcrp:location", - "@id": "universal:location/02dyts510" - } - ], - "ror": "02dyts510", - "url": [ - "https://www.tennet.eu/", - "https://en.wikipedia.org/wiki/TenneT" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tennet" -} diff --git a/organisation/teri.json b/organisation/teri.json deleted file mode 100644 index 8f9ca37e..00000000 --- a/organisation/teri.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "TERI", - "ui_label": "Institute for Sustainable Innovative Technologies", - "description": "", - "acronyms": [ - "ISIT" - ], - "aliases": [ - "Inštitut za Sonaravne Inovativne Tehnologije" - ], - "established": 2008, - "kind": "nonprofit", - "labels": [ - "Institute for Sustainable Innovative Technologies" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "SI", - "country_name": "Slovenia", - "country_subdivision_code": "061", - "country_subdivision_name": "Ljubljana", - "lat": 46.05108, - "lng": 14.50513, - "name": "Ljubljana", - "@type": "wcrp:location", - "@id": "universal:location/03h7kv823" - } - ], - "ror": "03h7kv823", - "url": [ - "http://isit.si/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "teri" -} diff --git a/organisation/thu.json b/organisation/thu.json deleted file mode 100644 index 0bbfc0b9..00000000 --- a/organisation/thu.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "THU", - "ui_label": "Tsinghua University", - "description": "", - "acronyms": [ - "THU" - ], - "aliases": [], - "established": 1911, - "kind": "education", - "labels": [ - "Tsinghua University", - "清华大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "CN", - "country_name": "China", - "country_subdivision_code": "BJ", - "country_subdivision_name": "Beijing", - "lat": 39.9075, - "lng": 116.39723, - "name": "Beijing", - "@type": "wcrp:location", - "@id": "universal:location/03cve4549" - } - ], - "ror": "03cve4549", - "url": [ - "https://www.tsinghua.edu.cn", - "http://en.wikipedia.org/wiki/Tsinghua_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "thu" -} diff --git a/organisation/tma.json b/organisation/tma.json deleted file mode 100644 index 044ed92a..00000000 --- a/organisation/tma.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "TMA", - "ui_label": "Tanzania Meteorological Agency", - "description": "", - "acronyms": [ - "TMA" - ], - "aliases": [], - "established": 1997, - "kind": "nonprofit", - "labels": [ - "Tanzania Meteorological Agency" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "TZ", - "country_name": "Tanzania", - "country_subdivision_code": "02", - "country_subdivision_name": "Dar es Salaam Region", - "lat": -6.82349, - "lng": 39.26951, - "name": "Dar es Salaam", - "@type": "wcrp:location", - "@id": "universal:location/01zg6vj90" - } - ], - "ror": "01zg6vj90", - "url": [ - "http://www.meteo.go.tz" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tma" -} diff --git a/organisation/tropos.json b/organisation/tropos.json deleted file mode 100644 index 0429522f..00000000 --- a/organisation/tropos.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "TROPOS", - "ui_label": "Leibniz Institute for Tropospheric Research", - "description": "", - "acronyms": [ - "TROPOS" - ], - "aliases": [], - "established": 1992, - "kind": "facility", - "labels": [ - "Leibniz Institute for Tropospheric Research", - "Leibniz-Institut für Troposphärenforschung" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "SN", - "country_subdivision_name": "Saxony", - "lat": 51.33962, - "lng": 12.37129, - "name": "Leipzig", - "@type": "wcrp:location", - "@id": "universal:location/03a5xsc56" - } - ], - "ror": "03a5xsc56", - "url": [ - "https://www.tropos.de/en/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tropos" -} diff --git a/organisation/tubitak.json b/organisation/tubitak.json deleted file mode 100644 index fdc80d09..00000000 --- a/organisation/tubitak.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "TUBITAK", - "ui_label": "Scientific and Technological Research Council of Turkey", - "description": "", - "acronyms": [ - "TÜBİTAK" - ], - "aliases": [ - "Türkiye Bilimsel ve Teknolojik Araştırma Kurumu" - ], - "established": 1963, - "kind": "funder", - "labels": [ - "Scientific and Technological Research Council of Turkey", - "Türkiyə Elmi və Texnoloji Tədqiqat Şurası" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "TR", - "country_name": "Türkiye", - "country_subdivision_code": "06", - "country_subdivision_name": "Ankara", - "lat": 39.91987, - "lng": 32.85427, - "name": "Ankara", - "@type": "wcrp:location", - "@id": "universal:location/04w9kkr77" - } - ], - "ror": "04w9kkr77", - "url": [ - "http://www.tubitak.gov.tr/en", - "https://en.wikipedia.org/wiki/Scientific_and_Technological_Research_Council_of_Turkey" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tubitak" -} diff --git a/organisation/tudelft.json b/organisation/tudelft.json deleted file mode 100644 index 9240ead9..00000000 --- a/organisation/tudelft.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "TUDelft", - "ui_label": "Delft University of Technology", - "description": "", - "acronyms": [], - "aliases": [ - "TU Delft" - ], - "established": 1842, - "kind": "education", - "labels": [ - "Delft University of Technology", - "Technische Universiteit Delft" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "ZH", - "country_subdivision_name": "South Holland", - "lat": 52.00667, - "lng": 4.35556, - "name": "Delft", - "@type": "wcrp:location", - "@id": "universal:location/02e2c7k09" - } - ], - "ror": "02e2c7k09", - "url": [ - "https://www.tudelft.nl", - "http://en.wikipedia.org/wiki/Delft_University_of_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tudelft" -} diff --git a/organisation/tum.json b/organisation/tum.json deleted file mode 100644 index 20a89db0..00000000 --- a/organisation/tum.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "TUM", - "ui_label": "Technical University of Munich", - "description": "", - "acronyms": [ - "TUM" - ], - "aliases": [ - "Technische Universitaet Muenchen" - ], - "established": 1868, - "kind": "education", - "labels": [ - "Technical University of Munich", - "Technische Universität München" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BY", - "country_subdivision_name": "Bavaria", - "lat": 48.13743, - "lng": 11.57549, - "name": "Munich", - "@type": "wcrp:location", - "@id": "universal:location/02kkvpp62" - } - ], - "ror": "02kkvpp62", - "url": [ - "https://www.tum.de", - "http://en.wikipedia.org/wiki/Technische_Universit%C3%A4t_M%C3%BCnchen" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tum" -} diff --git a/organisation/tuw.json b/organisation/tuw.json deleted file mode 100644 index 74bf0848..00000000 --- a/organisation/tuw.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "TUW", - "ui_label": "Architekturzentrum Wien", - "description": "", - "acronyms": [ - "Az W" - ], - "aliases": [], - "established": 1993, - "kind": "archive", - "labels": [ - "Architekturzentrum Wien" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "AT", - "country_name": "Austria", - "country_subdivision_code": "9", - "country_subdivision_name": "Vienna", - "lat": 48.20849, - "lng": 16.37208, - "name": "Vienna", - "@type": "wcrp:location", - "@id": "universal:location/03rn5p709" - } - ], - "ror": "03rn5p709", - "url": [ - "http://www.azw.at/startpage.php?lang_id=en", - "https://en.wikipedia.org/wiki/Architekturzentrum_Wien" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "tuw" -} diff --git a/organisation/twp.json b/organisation/twp.json deleted file mode 100644 index c2098def..00000000 --- a/organisation/twp.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "TWP", - "ui_label": "Herzog + Partner (Germany)", - "description": "", - "acronyms": [], - "aliases": [], - "established": null, - "kind": "company", - "labels": [ - "Herzog + Partner (Germany)" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "BW", - "country_subdivision_name": "Baden-Wurttemberg", - "lat": 49.4891, - "lng": 8.46694, - "name": "Mannheim", - "@type": "wcrp:location", - "@id": "universal:location/02ratyz17" - } - ], - "ror": "02ratyz17", - "url": [ - "https://www.herzogundpartner.de/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "twp" -} diff --git a/organisation/ua.json b/organisation/ua.json deleted file mode 100644 index c8e2aa2c..00000000 --- a/organisation/ua.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UA", - "ui_label": "University of Arizona", - "description": "", - "acronyms": [ - "UA" - ], - "aliases": [], - "established": 1885, - "kind": "education", - "labels": [ - "Universidad de Arizona", - "University of Arizona" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "AZ", - "country_subdivision_name": "Arizona", - "lat": 32.22174, - "lng": -110.92648, - "name": "Tucson", - "@type": "wcrp:location", - "@id": "universal:location/03m2x1q45" - } - ], - "ror": "03m2x1q45", - "url": [ - "http://www.arizona.edu/", - "http://en.wikipedia.org/wiki/University_of_Arizona" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ua" -} diff --git a/organisation/uaar.json b/organisation/uaar.json deleted file mode 100644 index a68680be..00000000 --- a/organisation/uaar.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "UAAR", - "ui_label": "Pir Mehr Ali Shah Arid Agriculture University", - "description": "", - "acronyms": [ - "AAUR" - ], - "aliases": [ - "PMAS-Arid University" - ], - "established": 1994, - "kind": "education", - "labels": [ - "Pir Mehr Ali Shah Arid Agriculture University", - "پیر مہر علی شاہ بارانی یونیورسٹی" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "PK", - "country_name": "Pakistan", - "country_subdivision_code": "PB", - "country_subdivision_name": "Punjab", - "lat": 33.59733, - "lng": 73.0479, - "name": "Rawalpindi", - "@type": "wcrp:location", - "@id": "universal:location/035zn2q74" - } - ], - "ror": "035zn2q74", - "url": [ - "http://www.uaar.edu.pk/", - "https://en.wikipedia.org/wiki/Pir_Mehr_Ali_Shah_Arid_Agriculture_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uaar" -} diff --git a/organisation/uah.json b/organisation/uah.json deleted file mode 100644 index db8a2168..00000000 --- a/organisation/uah.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UAH", - "ui_label": "Universidad de Alcalá", - "description": "", - "acronyms": [ - "UAH" - ], - "aliases": [], - "established": 1499, - "kind": "education", - "labels": [ - "Universidad de Alcalá", - "University of Alcalá" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "MD", - "country_subdivision_name": "Madrid", - "lat": 40.48205, - "lng": -3.35996, - "name": "Alcalá de Henares", - "@type": "wcrp:location", - "@id": "universal:location/04pmn0e78" - } - ], - "ror": "04pmn0e78", - "url": [ - "https://uah.es", - "https://en.wikipedia.org/wiki/University_of_Alcal%C3%A1" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uah" -} diff --git a/organisation/ual.json b/organisation/ual.json deleted file mode 100644 index 0743d187..00000000 --- a/organisation/ual.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "UAL", - "ui_label": "Albany State University", - "description": "", - "acronyms": [ - "ASU" - ], - "aliases": [], - "established": 1903, - "kind": "education", - "labels": [ - "Albany State University" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "GA", - "country_subdivision_name": "Georgia", - "lat": 31.57851, - "lng": -84.15574, - "name": "Albany", - "@type": "wcrp:location", - "@id": "universal:location/01vme4277" - } - ], - "ror": "01vme4277", - "url": [ - "https://www.asurams.edu", - "http://en.wikipedia.org/wiki/Albany_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ual" -} diff --git a/organisation/uba.json b/organisation/uba.json deleted file mode 100644 index 04827a99..00000000 --- a/organisation/uba.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "UBA", - "ui_label": "German Environment Agency", - "description": "", - "acronyms": [ - "UBA" - ], - "aliases": [ - "German Federal Environment Agency" - ], - "established": 1974, - "kind": "funder", - "labels": [ - "German Environment Agency", - "Umweltbundesamt" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "ST", - "country_subdivision_name": "Saxony-Anhalt", - "lat": 51.83864, - "lng": 12.24555, - "name": "Dessau", - "@type": "wcrp:location", - "@id": "universal:location/0329ynx05" - } - ], - "ror": "0329ynx05", - "url": [ - "https://www.umweltbundesamt.de" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uba" -} diff --git a/organisation/ubc.json b/organisation/ubc.json deleted file mode 100644 index 1aa27fc1..00000000 --- a/organisation/ubc.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UBC", - "ui_label": "University of British Columbia", - "description": "", - "acronyms": [ - "UBC" - ], - "aliases": [], - "established": 1908, - "kind": "education", - "labels": [ - "University of British Columbia", - "Université de la colombie-britannique" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "BC", - "country_subdivision_name": "British Columbia", - "lat": 49.24966, - "lng": -123.11934, - "name": "Vancouver", - "@type": "wcrp:location", - "@id": "universal:location/03rmrcq20" - } - ], - "ror": "03rmrcq20", - "url": [ - "https://www.ubc.ca/", - "https://en.wikipedia.org/wiki/University_of_British_Columbia" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ubc" -} diff --git a/organisation/ucad.json b/organisation/ucad.json deleted file mode 100644 index 0b08bdbf..00000000 --- a/organisation/ucad.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "UCAD", - "ui_label": "Cheikh Anta Diop University", - "description": "", - "acronyms": [ - "UCAD" - ], - "aliases": [ - "University of Dakar" - ], - "established": 1957, - "kind": "education", - "labels": [ - "Cheikh Anta Diop University", - "Université Cheikh Anta Diop" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "SN", - "country_name": "Senegal", - "country_subdivision_code": "DK", - "country_subdivision_name": "Dakar", - "lat": 14.6937, - "lng": -17.44406, - "name": "Dakar", - "@type": "wcrp:location", - "@id": "universal:location/04je6yw13" - } - ], - "ror": "04je6yw13", - "url": [ - "http://www.ucad.sn/", - "http://en.wikipedia.org/wiki/Cheikh_Anta_Diop_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucad" -} diff --git a/organisation/ucar.json b/organisation/ucar.json deleted file mode 100644 index b26f669d..00000000 --- a/organisation/ucar.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "UCAR", - "ui_label": "University Corporation for Atmospheric Research", - "description": "", - "acronyms": [ - "UCAR" - ], - "aliases": [], - "established": 1959, - "kind": "funder", - "labels": [ - "University Corporation for Atmospheric Research" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CO", - "country_subdivision_name": "Colorado", - "lat": 40.01499, - "lng": -105.27055, - "name": "Boulder", - "@type": "wcrp:location", - "@id": "universal:location/04zhhyn23" - } - ], - "ror": "04zhhyn23", - "url": [ - "https://www2.ucar.edu/", - "http://en.wikipedia.org/wiki/University_Corporation_for_Atmospheric_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucar" -} diff --git a/organisation/ucberkeley.json b/organisation/ucberkeley.json deleted file mode 100644 index 66a93152..00000000 --- a/organisation/ucberkeley.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "validation_key": "UCBerkeley", - "ui_label": "University of California, Berkeley", - "description": "", - "acronyms": [ - "UCB" - ], - "aliases": [ - "Cal Berkeley", - "UC Berkeley", - "University of California at Berkeley" - ], - "established": 1868, - "kind": "education", - "labels": [ - "Universidad de California en Berkeley", - "University of California, Berkeley", - "Université de Californie à Berkeley" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 37.87159, - "lng": -122.27275, - "name": "Berkeley", - "@type": "wcrp:location", - "@id": "universal:location/01an7q238" - } - ], - "ror": "01an7q238", - "url": [ - "https://www.berkeley.edu", - "http://en.wikipedia.org/wiki/University_of_California,_Berkeley" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucberkeley" -} diff --git a/organisation/uci.json b/organisation/uci.json deleted file mode 100644 index b808d352..00000000 --- a/organisation/uci.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCI", - "ui_label": "University of California, Irvine", - "description": "", - "acronyms": [ - "UCI" - ], - "aliases": [ - "UC Irvine" - ], - "established": 1965, - "kind": "education", - "labels": [ - "Universidad de California en Irvine", - "University of California, Irvine", - "Université de Californie à Irvine" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 33.66946, - "lng": -117.82311, - "name": "Irvine", - "@type": "wcrp:location", - "@id": "universal:location/04gyf1771" - } - ], - "ror": "04gyf1771", - "url": [ - "http://uci.edu/", - "http://en.wikipedia.org/wiki/University_of_California,_Irvine" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uci" -} diff --git a/organisation/ucl.json b/organisation/ucl.json deleted file mode 100644 index 9655e932..00000000 --- a/organisation/ucl.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCL", - "ui_label": "University College London", - "description": "", - "acronyms": [ - "UCL" - ], - "aliases": [ - "London University", - "University College, London" - ], - "established": 1826, - "kind": "education", - "labels": [ - "Coleg Prifysgol Llundain", - "University College London" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.50853, - "lng": -0.12574, - "name": "London", - "@type": "wcrp:location", - "@id": "universal:location/02jx3x895" - } - ], - "ror": "02jx3x895", - "url": [ - "http://www.ucl.ac.uk/", - "http://en.wikipedia.org/wiki/University_College_London" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucl" -} diff --git a/organisation/ucla.json b/organisation/ucla.json deleted file mode 100644 index d0164dda..00000000 --- a/organisation/ucla.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "validation_key": "UCLA", - "ui_label": "University of California, Los Angeles", - "description": "", - "acronyms": [ - "UCLA" - ], - "aliases": [ - "State Normal School at Los Angeles", - "UC Los Angeles", - "University of California Southern Branch", - "University of California at Los Angeles" - ], - "established": 1919, - "kind": "education", - "labels": [ - "Universidad de California en Los Ángeles", - "University of California, Los Angeles", - "Université de Californie à Los Angeles" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 34.05223, - "lng": -118.24368, - "name": "Los Angeles", - "@type": "wcrp:location", - "@id": "universal:location/046rm7j60" - } - ], - "ror": "046rm7j60", - "url": [ - "https://www.ucla.edu", - "http://en.wikipedia.org/wiki/University_of_California,_Los_Angeles" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucla" -} diff --git a/organisation/uclouvain.json b/organisation/uclouvain.json deleted file mode 100644 index 01bf05c8..00000000 --- a/organisation/uclouvain.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "UCLouvain", - "ui_label": "UCLouvain", - "description": "", - "acronyms": [], - "aliases": [ - "Université catholique de Belgique", - "Université catholique de Louvain" - ], - "established": 1425, - "kind": "education", - "labels": [ - "Catholic University of Louvain", - "UCLouvain" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "BE", - "country_name": "Belgium", - "country_subdivision_code": "WAL", - "country_subdivision_name": "Wallonia", - "lat": 50.66829, - "lng": 4.61443, - "name": "Louvain-la-Neuve", - "@type": "wcrp:location", - "@id": "universal:location/02495e989" - } - ], - "ror": "02495e989", - "url": [ - "https://uclouvain.be", - "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uclouvain" -} diff --git a/organisation/ucm.json b/organisation/ucm.json deleted file mode 100644 index ee6aaf84..00000000 --- a/organisation/ucm.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "UCM", - "ui_label": "Universidad Complutense de Madrid", - "description": "", - "acronyms": [ - "UCM" - ], - "aliases": [ - "Universidad de Madrid" - ], - "established": 1293, - "kind": "education", - "labels": [ - "Complutense University of Madrid", - "Madrilgo Complutense Unibertsitatea", - "Universidad Complutense de Madrid", - "Universidade Complutense de Madrid" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "ES", - "country_name": "Spain", - "country_subdivision_code": "MD", - "country_subdivision_name": "Madrid", - "lat": 40.4165, - "lng": -3.70256, - "name": "Madrid", - "@type": "wcrp:location", - "@id": "universal:location/02p0gd045" - } - ], - "ror": "02p0gd045", - "url": [ - "https://www.ucm.es", - "http://en.wikipedia.org/wiki/Complutense_University_of_Madrid" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucm" -} diff --git a/organisation/ucolorado.json b/organisation/ucolorado.json deleted file mode 100644 index 8d5c968a..00000000 --- a/organisation/ucolorado.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "UColorado", - "ui_label": "University of Colorado System", - "description": "", - "acronyms": [ - "CU" - ], - "aliases": [], - "established": 1876, - "kind": "Education", - "labels": [ - "Universidad de Colorado", - "Université du Colorado" - ], - "location": { - "city": "Boulder", - "country": [ - "United States", - "US" - ], - "lat": 40.01499, - "lon": -105.27055, - "@type": "esgf:location", - "@id": "universal:location/00jc20583" - }, - "ror": "00jc20583", - "url": [ - "http://www.cu.edu/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucolorado" -} diff --git a/organisation/ucriverside.json b/organisation/ucriverside.json deleted file mode 100644 index 4ace831b..00000000 --- a/organisation/ucriverside.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCRiverside", - "ui_label": "University of California, Riverside", - "description": "", - "acronyms": [ - "UCR" - ], - "aliases": [ - "UC Riverside" - ], - "established": 1954, - "kind": "education", - "labels": [ - "Universidad de California en Riverside", - "University of California, Riverside", - "Université de Californie à Riverside" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 33.95335, - "lng": -117.39616, - "name": "Riverside", - "@type": "wcrp:location", - "@id": "universal:location/03nawhv43" - } - ], - "ror": "03nawhv43", - "url": [ - "https://www.ucr.edu", - "http://en.wikipedia.org/wiki/University_of_California,_Riverside" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucriverside" -} diff --git a/organisation/ucsb.json b/organisation/ucsb.json deleted file mode 100644 index fd08a874..00000000 --- a/organisation/ucsb.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCSB", - "ui_label": "University of California, Santa Barbara", - "description": "", - "acronyms": [ - "UCSB" - ], - "aliases": [ - "UC Santa Barbara" - ], - "established": 1891, - "kind": "education", - "labels": [ - "Universidad de California en Santa Bárbara", - "University of California, Santa Barbara", - "Université de Californie à Santa Barbara" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 34.42083, - "lng": -119.69819, - "name": "Santa Barbara", - "@type": "wcrp:location", - "@id": "universal:location/02t274463" - } - ], - "ror": "02t274463", - "url": [ - "https://www.ucsb.edu", - "http://en.wikipedia.org/wiki/University_of_California,_Santa_Barbara" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucsb" -} diff --git a/organisation/ucsc.json b/organisation/ucsc.json deleted file mode 100644 index 7ae6a119..00000000 --- a/organisation/ucsc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCSC", - "ui_label": "University of California, Santa Cruz", - "description": "", - "acronyms": [ - "UCSC" - ], - "aliases": [ - "UC Santa Cruz" - ], - "established": 1965, - "kind": "education", - "labels": [ - "Universidad de California en Santa Cruz", - "University of California, Santa Cruz", - "Université de Californie à Santa Cruz" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 36.97412, - "lng": -122.0308, - "name": "Santa Cruz", - "@type": "wcrp:location", - "@id": "universal:location/03s65by71" - } - ], - "ror": "03s65by71", - "url": [ - "https://www.ucsc.edu", - "http://en.wikipedia.org/wiki/University_of_California,_Santa_Cruz" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucsc" -} diff --git a/organisation/ucsd.json b/organisation/ucsd.json deleted file mode 100644 index 60a248eb..00000000 --- a/organisation/ucsd.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "UCSD", - "ui_label": "University of California San Diego", - "description": "", - "acronyms": [ - "UCSD" - ], - "aliases": [ - "UC San Diego", - "University of California, San Diego" - ], - "established": 1960, - "kind": "education", - "labels": [ - "University of California San Diego" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 32.71571, - "lng": -117.16472, - "name": "San Diego", - "@type": "wcrp:location", - "@id": "universal:location/0168r3w48" - } - ], - "ror": "0168r3w48", - "url": [ - "https://ucsd.edu", - "http://en.wikipedia.org/wiki/University_of_California,_San_Diego" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ucsd" -} diff --git a/organisation/uct.json b/organisation/uct.json deleted file mode 100644 index 1335242a..00000000 --- a/organisation/uct.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UCT", - "ui_label": "University of Cape Town", - "description": "", - "acronyms": [ - "UCT" - ], - "aliases": [ - "South African College" - ], - "established": 1829, - "kind": "education", - "labels": [ - "Universiteit van Kaapstad", - "University of Cape Town", - "iYunivesithi yaseKapa" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "ZA", - "country_name": "South Africa", - "country_subdivision_code": "WC", - "country_subdivision_name": "Western Cape", - "lat": -33.96333, - "lng": 18.47639, - "name": "Rondebosch", - "@type": "wcrp:location", - "@id": "universal:location/03p74gp79" - } - ], - "ror": "03p74gp79", - "url": [ - "https://uct.ac.za", - "http://en.wikipedia.org/wiki/University_of_Cape_Town" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uct" -} diff --git a/organisation/uea.json b/organisation/uea.json deleted file mode 100644 index ef6328fe..00000000 --- a/organisation/uea.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UEA", - "ui_label": "University of East Anglia", - "description": "", - "acronyms": [ - "UEA" - ], - "aliases": [], - "established": 1963, - "kind": "education", - "labels": [ - "Prifysgol Dwyrain Anglia", - "University of East Anglia" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 52.62783, - "lng": 1.29834, - "name": "Norwich", - "@type": "wcrp:location", - "@id": "universal:location/026k5mg93" - } - ], - "ror": "026k5mg93", - "url": [ - "https://www.uea.ac.uk/", - "http://en.wikipedia.org/wiki/University_of_East_Anglia" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uea" -} diff --git a/organisation/uerj.json b/organisation/uerj.json deleted file mode 100644 index 87a8478d..00000000 --- a/organisation/uerj.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UERJ", - "ui_label": "Universidade do Estado do Rio de Janeiro", - "description": "", - "acronyms": [ - "UERJ" - ], - "aliases": [], - "established": 1950, - "kind": "education", - "labels": [ - "Rio de Janeiro State University", - "Universidade do Estado do Rio de Janeiro" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "RJ", - "country_subdivision_name": "Rio de Janeiro", - "lat": -22.90642, - "lng": -43.18223, - "name": "Rio de Janeiro", - "@type": "wcrp:location", - "@id": "universal:location/0198v2949" - } - ], - "ror": "0198v2949", - "url": [ - "https://www.uerj.br", - "http://en.wikipedia.org/wiki/Rio_de_Janeiro_State_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uerj" -} diff --git a/organisation/ufrn.json b/organisation/ufrn.json deleted file mode 100644 index fcdf568d..00000000 --- a/organisation/ufrn.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UFRN", - "ui_label": "Universidade Federal do Rio Grande do Norte", - "description": "", - "acronyms": [ - "UFRN" - ], - "aliases": [], - "established": 1958, - "kind": "education", - "labels": [ - "Federal University of Rio Grande do Norte", - "Universidade Federal do Rio Grande do Norte" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "RN", - "country_subdivision_name": "Rio Grande do Norte", - "lat": -5.795, - "lng": -35.20944, - "name": "Natal", - "@type": "wcrp:location", - "@id": "universal:location/04wn09761" - } - ], - "ror": "04wn09761", - "url": [ - "https://ufrn.br", - "https://en.wikipedia.org/wiki/Federal_University_of_Rio_Grande_do_Norte" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ufrn" -} diff --git a/organisation/ufz.json b/organisation/ufz.json deleted file mode 100644 index 736b00b3..00000000 --- a/organisation/ufz.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "validation_key": "UFZ", - "ui_label": "Helmholtz Centre for Environmental Research", - "description": "", - "acronyms": [ - "UFZ" - ], - "aliases": [ - "Helmholtz Centre for Environmental Research - UFZ", - "Helmholtz-Zentrum für Umweltforschung - UFZ", - "Helmholtz-Zentrum für Umweltforschung GmbH", - "Helmholtz-Zentrum für Umweltforschung GmbH -UFZ" - ], - "established": 1991, - "kind": "facility", - "labels": [ - "Helmholtz Centre for Environmental Research", - "Helmholtz-Zentrum für Umweltforschung" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "SN", - "country_subdivision_name": "Saxony", - "lat": 51.33962, - "lng": 12.37129, - "name": "Leipzig", - "@type": "wcrp:location", - "@id": "universal:location/000h6jb29" - } - ], - "ror": "000h6jb29", - "url": [ - "https://www.ufz.de", - "http://en.wikipedia.org/wiki/Helmholtz_Centre_for_Environmental_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ufz" -} diff --git a/organisation/uga.json b/organisation/uga.json deleted file mode 100644 index 9733bf6c..00000000 --- a/organisation/uga.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UGA", - "ui_label": "Université Grenoble Alpes", - "description": "", - "acronyms": [ - "UGA" - ], - "aliases": [], - "established": 2016, - "kind": "education", - "labels": [ - "Grenoble Alpes University", - "Université Grenoble Alpes" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "FR", - "country_name": "France", - "country_subdivision_code": "ARA", - "country_subdivision_name": "Auvergne-Rhône-Alpes", - "lat": 45.1787, - "lng": 5.76281, - "name": "Saint-Martin-d'Hères", - "@type": "wcrp:location", - "@id": "universal:location/02rx3b187" - } - ], - "ror": "02rx3b187", - "url": [ - "https://www.univ-grenoble-alpes.fr", - "https://en.wikipedia.org/wiki/Grenoble_Alpes_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uga" -} diff --git a/organisation/uhh.json b/organisation/uhh.json deleted file mode 100644 index 3050dc1c..00000000 --- a/organisation/uhh.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "UHH", - "ui_label": "Universität Hamburg", - "description": "", - "acronyms": [ - "UHH" - ], - "aliases": [ - "Hamburg University" - ], - "established": 1919, - "kind": "education", - "labels": [ - "University of Hamburg", - "Universität Hamburg" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "DE", - "country_name": "Germany", - "country_subdivision_code": "HH", - "country_subdivision_name": "Hamburg", - "lat": 53.55073, - "lng": 9.99302, - "name": "Hamburg", - "@type": "wcrp:location", - "@id": "universal:location/00g30e956" - } - ], - "ror": "00g30e956", - "url": [ - "http://www.uni-hamburg.de", - "http://en.wikipedia.org/wiki/University_of_Hamburg" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uhh" -} diff --git a/organisation/uib.json b/organisation/uib.json deleted file mode 100644 index c653f295..00000000 --- a/organisation/uib.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "UiB", - "ui_label": "University of Bergen", - "description": "", - "acronyms": [ - "UiB" - ], - "aliases": [], - "established": 1946, - "kind": "education", - "labels": [ - "Bergenin Yliopisto", - "Universitas Bergensis", - "Universitetet i Bergen", - "University of Bergen" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "46", - "country_subdivision_name": "Vestland", - "lat": 60.39299, - "lng": 5.32415, - "name": "Bergen", - "@type": "wcrp:location", - "@id": "universal:location/03zga2b32" - } - ], - "ror": "03zga2b32", - "url": [ - "http://www.uib.no/", - "http://en.wikipedia.org/wiki/University_of_Bergen" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uib" -} diff --git a/organisation/uio.json b/organisation/uio.json deleted file mode 100644 index ded848ba..00000000 --- a/organisation/uio.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UiO", - "ui_label": "University of Oslo", - "description": "", - "acronyms": [ - "UiO" - ], - "aliases": [ - "Royal Frederick University" - ], - "established": 1811, - "kind": "education", - "labels": [ - "Oslon Yliopisto", - "Universitetet i Oslo", - "University of Oslo" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NO", - "country_name": "Norway", - "country_subdivision_code": "03", - "country_subdivision_name": "Oslo", - "lat": 59.91273, - "lng": 10.74609, - "name": "Oslo", - "@type": "wcrp:location", - "@id": "universal:location/01xtthb56" - } - ], - "ror": "01xtthb56", - "url": [ - "http://www.uio.no/english/", - "http://en.wikipedia.org/wiki/University_of_Oslo" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uio" -} diff --git a/organisation/uiuc.json b/organisation/uiuc.json deleted file mode 100644 index e3710aed..00000000 --- a/organisation/uiuc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UIUC", - "ui_label": "University of Illinois Urbana-Champaign", - "description": "", - "acronyms": [ - "UIUC" - ], - "aliases": [ - "University of Illinois" - ], - "established": 1867, - "kind": "education", - "labels": [ - "Universidad de Illinois en Urbana-Champaign", - "University of Illinois Urbana-Champaign", - "Université de l'Illinois à Urbana-Champaign" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "IL", - "country_subdivision_name": "Illinois", - "lat": 40.11059, - "lng": -88.20727, - "name": "Urbana", - "@type": "wcrp:location", - "@id": "universal:location/047426m28" - } - ], - "ror": "047426m28", - "url": [ - "https://illinois.edu", - "http://en.wikipedia.org/wiki/University_of_Illinois_at_Urbana%E2%80%93Champaign" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uiuc" -} diff --git a/organisation/ukceh.json b/organisation/ukceh.json deleted file mode 100644 index 781b8d71..00000000 --- a/organisation/ukceh.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "validation_key": "UKCEH", - "ui_label": "UK Centre for Ecology & Hydrology", - "description": "", - "acronyms": [ - "UKCEH" - ], - "aliases": [ - "Canolfan Ecoleg a Hydroleg y DU", - "Centre britannique pour l'Écologie et l'Hydrologie" - ], - "established": 2000, - "kind": "funder", - "labels": [ - "UK Centre for Ecology & Hydrology" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 51.59982, - "lng": -1.1248, - "name": "Wallingford", - "@type": "wcrp:location", - "@id": "universal:location/00pggkr55" - }, - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "WLS", - "country_subdivision_name": "Wales", - "lat": 53.2223, - "lng": -4.13579, - "name": "Bangor", - "@type": "wcrp:location", - "@id": "universal:location/00pggkr55" - }, - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "SCT", - "country_subdivision_name": "Scotland", - "lat": 55.94973, - "lng": -3.19333, - "name": "Edinburgh", - "@type": "wcrp:location", - "@id": "universal:location/00pggkr55" - }, - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "GB", - "country_name": "United Kingdom", - "country_subdivision_code": "ENG", - "country_subdivision_name": "England", - "lat": 54.11667, - "lng": -2.76667, - "name": "Lancaster", - "@type": "wcrp:location", - "@id": "universal:location/00pggkr55" - }, - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "GH", - "country_name": "Ghana", - "country_subdivision_code": "AA", - "country_subdivision_name": "Greater Accra", - "lat": 5.55602, - "lng": -0.1969, - "name": "Accra", - "@type": "wcrp:location", - "@id": "universal:location/00pggkr55" - } - ], - "ror": "00pggkr55", - "url": [ - "https://www.ceh.ac.uk/", - "https://en.wikipedia.org/wiki/Centre_for_Ecology_and_Hydrology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ukceh" -} diff --git a/organisation/ulb.json b/organisation/ulb.json deleted file mode 100644 index dec4427c..00000000 --- a/organisation/ulb.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "ULB", - "ui_label": "Université Libre de Bruxelles", - "description": "", - "acronyms": [ - "ULB" - ], - "aliases": [], - "established": 1834, - "kind": "education", - "labels": [ - "Université Libre de Bruxelles" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "BE", - "country_name": "Belgium", - "country_subdivision_code": "BRU", - "country_subdivision_name": "Brussels Capital", - "lat": 50.85045, - "lng": 4.34878, - "name": "Brussels", - "@type": "wcrp:location", - "@id": "universal:location/01r9htc13" - } - ], - "ror": "01r9htc13", - "url": [ - "https://www.ulb.be", - "http://en.wikipedia.org/wiki/Universit%C3%A9_libre_de_Bruxelles" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ulb" -} diff --git a/organisation/umn.json b/organisation/umn.json deleted file mode 100644 index 363ae349..00000000 --- a/organisation/umn.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "UMN", - "ui_label": "University of Minnesota", - "description": "", - "acronyms": [], - "aliases": [ - "University of Minnesota, Twin Cities" - ], - "established": 1851, - "kind": "education", - "labels": [ - "University of Minnesota" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MN", - "country_subdivision_name": "Minnesota", - "lat": 44.97997, - "lng": -93.26384, - "name": "Minneapolis", - "@type": "wcrp:location", - "@id": "universal:location/017zqws13" - } - ], - "ror": "017zqws13", - "url": [ - "https://twin-cities.umn.edu", - "http://en.wikipedia.org/wiki/University_of_Minnesota" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "umn" -} diff --git a/organisation/unipampa.json b/organisation/unipampa.json deleted file mode 100644 index be7fa705..00000000 --- a/organisation/unipampa.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UNIPAMPA", - "ui_label": "Universidade Federal do Pampa", - "description": "", - "acronyms": [], - "aliases": [ - "Unipampa" - ], - "established": 2006, - "kind": "education", - "labels": [ - "Federal University of Pampa", - "Universidade Federal do Pampa" - ], - "location": [ - { - "continent_code": "SA", - "continent_name": "South America", - "country_code": "BR", - "country_name": "Brazil", - "country_subdivision_code": "RS", - "country_subdivision_name": "Rio Grande do Sul", - "lat": -31.33139, - "lng": -54.10694, - "name": "Bagé", - "@type": "wcrp:location", - "@id": "universal:location/003qt4p19" - } - ], - "ror": "003qt4p19", - "url": [ - "https://unipampa.edu.br", - "http://en.wikipedia.org/wiki/Universidade_Federal_do_Pampa" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "unipampa" -} diff --git a/organisation/unist.json b/organisation/unist.json deleted file mode 100644 index 44854f0d..00000000 --- a/organisation/unist.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "UNIST", - "ui_label": "Ulsan National Institute of Science and Technology", - "description": "", - "acronyms": [ - "UNIST" - ], - "aliases": [ - "Ulsan Gwahak Gisul Daehakgyo", - "울산과학기술대학교" - ], - "established": 2007, - "kind": "education", - "labels": [ - "Ulsan National Institute of Science and Technology", - "울산과학기술원" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "KR", - "country_name": "South Korea", - "country_subdivision_code": "31", - "country_subdivision_name": "Ulsan", - "lat": 35.53722, - "lng": 129.31667, - "name": "Ulsan", - "@type": "wcrp:location", - "@id": "universal:location/017cjz748" - } - ], - "ror": "017cjz748", - "url": [ - "https://www.unist.ac.kr", - "https://en.wikipedia.org/wiki/Ulsan_National_Institute_of_Science_and_Technology" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "unist" -} diff --git a/organisation/unstim.json b/organisation/unstim.json deleted file mode 100644 index 1b87efba..00000000 --- a/organisation/unstim.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "UNSTIM", - "ui_label": "National University of Sciences, Technologies, Engineering and Mathematics", - "description": "", - "acronyms": [ - "UNSTIM" - ], - "aliases": [], - "established": 2014, - "kind": "education", - "labels": [ - "National University of Sciences, Technologies, Engineering and Mathematics", - "Université Nationale des Sciences, Technologies, Ingénierie et Mathématiques" - ], - "location": [ - { - "continent_code": "AF", - "continent_name": "Africa", - "country_code": "BJ", - "country_name": "Benin", - "country_subdivision_code": "AQ", - "country_subdivision_name": "Atlantique", - "lat": 6.44852, - "lng": 2.35566, - "name": "Abomey-Calavi", - "@type": "wcrp:location", - "@id": "universal:location/0421qr997" - } - ], - "ror": "0421qr997", - "url": [ - "https://unstim.bj" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "unstim" -} diff --git a/organisation/unsw.json b/organisation/unsw.json deleted file mode 100644 index aec634e9..00000000 --- a/organisation/unsw.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "UNSW", - "ui_label": "UNSW Sydney", - "description": "", - "acronyms": [ - "UNSW" - ], - "aliases": [ - "University of New South Wales" - ], - "established": 1949, - "kind": "education", - "labels": [ - "UNSW Sydney" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "NSW", - "country_subdivision_name": "New South Wales", - "lat": -33.86785, - "lng": 151.20732, - "name": "Sydney", - "@type": "wcrp:location", - "@id": "universal:location/03r8z3t63" - } - ], - "ror": "03r8z3t63", - "url": [ - "https://www.unsw.edu.au/", - "http://en.wikipedia.org/wiki/University_of_New_South_Wales" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "unsw" -} diff --git a/organisation/uobergen.json b/organisation/uobergen.json deleted file mode 100644 index 320ffa89..00000000 --- a/organisation/uobergen.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "validation_key": "UoBergen", - "ui_label": "University of Bergen", - "description": "", - "acronyms": [ - "UiB" - ], - "aliases": [], - "established": 1946, - "kind": "Education", - "labels": [ - "Bergenin Yliopisto", - "Universitas Bergensis", - "Universitetet i Bergen" - ], - "location": { - "city": "Bergen", - "country": [ - "Norway", - "NO" - ], - "lat": 60.39299, - "lon": 5.32415, - "@type": "esgf:location", - "@id": "universal:location/03zga2b32" - }, - "ror": "03zga2b32", - "url": [ - "http://www.uib.no/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uobergen" -} diff --git a/organisation/uofmd.json b/organisation/uofmd.json deleted file mode 100644 index 1b4cc145..00000000 --- a/organisation/uofmd.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "UofMD", - "ui_label": "University of Maryland, College Park", - "description": "", - "acronyms": [ - "UMD" - ], - "aliases": [], - "established": 1856, - "kind": "Education", - "labels": [ - "Universidad de Maryland", - "Université du Maryland" - ], - "location": { - "city": "College Park", - "country": [ - "United States", - "US" - ], - "lat": 38.98067, - "lon": -76.93692, - "@type": "esgf:location", - "@id": "universal:location/047s2c258" - }, - "ror": "047s2c258", - "url": [ - "https://umd.edu" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uofmd" -} diff --git a/organisation/uoft.json b/organisation/uoft.json deleted file mode 100644 index dd5660fc..00000000 --- a/organisation/uoft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "UofT", - "ui_label": "University of Toronto", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1827, - "kind": "education", - "labels": [ - "University of Toronto", - "Université de Toronto" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "ON", - "country_subdivision_name": "Ontario", - "lat": 43.70643, - "lng": -79.39864, - "name": "Toronto", - "@type": "wcrp:location", - "@id": "universal:location/03dbr7087" - } - ], - "ror": "03dbr7087", - "url": [ - "https://www.utoronto.ca", - "https://en.wikipedia.org/wiki/University_of_Toronto" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uoft" -} diff --git a/organisation/uoh.json b/organisation/uoh.json deleted file mode 100644 index 098b1630..00000000 --- a/organisation/uoh.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "validation_key": "UoH", - "ui_label": "University of Hyderabad", - "description": "", - "acronyms": [ - "UoH" - ], - "aliases": [ - "Hyderabad Central University" - ], - "established": 1974, - "kind": "education", - "labels": [ - "University of Hyderabad", - "हैदराबाद विश्वविद्यालय", - "হায়দ্রাবাদ বিশ্ববিদ্যালয়", - "హైదరాబాదు విశ్వవిద్యాలయము" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "IN", - "country_name": "India", - "country_subdivision_code": "TS", - "country_subdivision_name": "Telangana", - "lat": 17.38405, - "lng": 78.45636, - "name": "Hyderabad", - "@type": "wcrp:location", - "@id": "universal:location/04a7rxb17" - } - ], - "ror": "04a7rxb17", - "url": [ - "https://uohyd.ac.in", - "http://en.wikipedia.org/wiki/University_of_Hyderabad" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uoh" -} diff --git a/organisation/uoleeds.json b/organisation/uoleeds.json deleted file mode 100644 index 19278a5f..00000000 --- a/organisation/uoleeds.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "UoLeeds", - "ui_label": "University of Leeds", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1904, - "kind": "Education", - "labels": [ - "Prifysgol Leeds" - ], - "location": { - "city": "Leeds", - "country": [ - "United Kingdom", - "GB" - ], - "lat": 53.79648, - "lon": -1.54785, - "@type": "esgf:location", - "@id": "universal:location/024mrxd33" - }, - "ror": "024mrxd33", - "url": [ - "https://www.leeds.ac.uk" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uoleeds" -} diff --git a/organisation/uom.json b/organisation/uom.json deleted file mode 100644 index eba36a6c..00000000 --- a/organisation/uom.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "validation_key": "UoM", - "ui_label": "The University of Melbourne", - "description": "", - "acronyms": [], - "aliases": [ - "Melbourne University", - "University of Melbourne" - ], - "established": 1853, - "kind": "Education", - "labels": [], - "location": { - "city": "Melbourne", - "country": [ - "Australia", - "AU" - ], - "lat": -37.814, - "lon": 144.96332, - "@type": "esgf:location", - "@id": "universal:location/01ej9dk98" - }, - "ror": "01ej9dk98", - "url": [ - "https://www.unimelb.edu.au" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uom" -} diff --git a/organisation/uomontreal.json b/organisation/uomontreal.json deleted file mode 100644 index 95b2ae3c..00000000 --- a/organisation/uomontreal.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "UoMontreal", - "ui_label": "Université de Montréal", - "description": "", - "acronyms": [ - "UdeM" - ], - "aliases": [], - "established": 1878, - "kind": "Education", - "labels": [ - "University of Montreal" - ], - "location": { - "city": "Montreal", - "country": [ - "Canada", - "CA" - ], - "lat": 45.50884, - "lon": -73.58781, - "@type": "esgf:location", - "@id": "universal:location/0161xgx34" - }, - "ror": "0161xgx34", - "url": [ - "https://www.umontreal.ca" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uomontreal" -} diff --git a/organisation/uootago.json b/organisation/uootago.json deleted file mode 100644 index a51cf05b..00000000 --- a/organisation/uootago.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "validation_key": "UoOtago", - "ui_label": "University of Otago", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1869, - "kind": "Education", - "labels": [], - "location": { - "city": "Dunedin", - "country": [ - "New Zealand", - "NZ" - ], - "lat": -45.87416, - "lon": 170.50361, - "@type": "esgf:location", - "@id": "universal:location/01jmxt844" - }, - "ror": "01jmxt844", - "url": [ - "http://www.otago.ac.nz/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uootago" -} diff --git a/organisation/uooulu.json b/organisation/uooulu.json deleted file mode 100644 index fbd3327b..00000000 --- a/organisation/uooulu.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "validation_key": "UoOulu", - "ui_label": "University of Oulu", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1958, - "kind": "Education", - "labels": [ - "Oulun yliopisto" - ], - "location": { - "city": "Oulu", - "country": [ - "Finland", - "FI" - ], - "lat": 65.01236, - "lon": 25.46816, - "@type": "esgf:location", - "@id": "universal:location/03yj89h83" - }, - "ror": "03yj89h83", - "url": [ - "https://www.oulu.fi" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uooulu" -} diff --git a/organisation/uosask.json b/organisation/uosask.json deleted file mode 100644 index 700bfb1d..00000000 --- a/organisation/uosask.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "UoSask", - "ui_label": "University of Saskatchewan", - "description": "", - "acronyms": [ - "USASK" - ], - "aliases": [], - "established": 1907, - "kind": "Education", - "labels": [ - "Université de la saskatchewan" - ], - "location": { - "city": "Saskatoon", - "country": [ - "Canada", - "CA" - ], - "lat": 52.13238, - "lon": -106.66892, - "@type": "esgf:location", - "@id": "universal:location/010x8gc63" - }, - "ror": "010x8gc63", - "url": [ - "https://www.usask.ca/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uosask" -} diff --git a/organisation/uottawa.json b/organisation/uottawa.json deleted file mode 100644 index e63ca98c..00000000 --- a/organisation/uottawa.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "validation_key": "uOttawa", - "ui_label": "University of Ottawa", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1848, - "kind": "education", - "labels": [ - "University of Ottawa", - "Université d'Ottawa" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "CA", - "country_name": "Canada", - "country_subdivision_code": "ON", - "country_subdivision_name": "Ontario", - "lat": 45.41117, - "lng": -75.69812, - "name": "Ottawa", - "@type": "wcrp:location", - "@id": "universal:location/03c4mmv16" - } - ], - "ror": "03c4mmv16", - "url": [ - "https://www.uottawa.ca", - "http://en.wikipedia.org/wiki/University_of_Ottawa" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uottawa" -} diff --git a/organisation/ureading.json b/organisation/ureading.json deleted file mode 100644 index 2b4c2415..00000000 --- a/organisation/ureading.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "validation_key": "UReading", - "ui_label": "University of Reading", - "description": "", - "acronyms": [], - "aliases": [], - "established": 1926, - "kind": "Education", - "labels": [], - "location": { - "city": "Reading", - "country": [ - "United Kingdom", - "GB" - ], - "lat": 51.45625, - "lon": -0.97113, - "@type": "esgf:location", - "@id": "universal:location/05v62cm79" - }, - "ror": "05v62cm79", - "url": [ - "https://www.reading.ac.uk" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "ureading" -} diff --git a/organisation/usd.json b/organisation/usd.json deleted file mode 100644 index 3ac9a3ca..00000000 --- a/organisation/usd.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "USD", - "ui_label": "University of San Diego", - "description": "", - "acronyms": [ - "USD" - ], - "aliases": [], - "established": 1949, - "kind": "education", - "labels": [ - "Universidad de San Diego", - "University of San Diego", - "Université de san diego" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "CA", - "country_subdivision_name": "California", - "lat": 32.71571, - "lng": -117.16472, - "name": "San Diego", - "@type": "wcrp:location", - "@id": "universal:location/03jbbze48" - } - ], - "ror": "03jbbze48", - "url": [ - "https://www.sandiego.edu", - "http://en.wikipedia.org/wiki/University_of_San_Diego" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "usd" -} diff --git a/organisation/usgs.json b/organisation/usgs.json deleted file mode 100644 index ffc608f5..00000000 --- a/organisation/usgs.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "USGS", - "ui_label": "United States Geological Survey", - "description": "", - "acronyms": [ - "USGS" - ], - "aliases": [ - "Geological Survey" - ], - "established": 1879, - "kind": "funder", - "labels": [ - "Servicio Geológico de los Estados Unidos", - "United States Geological Survey" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "VA", - "country_subdivision_name": "Virginia", - "lat": 38.96872, - "lng": -77.3411, - "name": "Reston", - "@type": "wcrp:location", - "@id": "universal:location/035a68863" - } - ], - "ror": "035a68863", - "url": [ - "http://www.usgs.gov/", - "https://en.wikipedia.org/wiki/United_States_Geological_Survey" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "usgs" -} diff --git a/organisation/utas.json b/organisation/utas.json deleted file mode 100644 index 073edf7b..00000000 --- a/organisation/utas.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "validation_key": "UTAS", - "ui_label": "University of Tasmania", - "description": "", - "acronyms": [ - "UTAS" - ], - "aliases": [], - "established": 1890, - "kind": "education", - "labels": [ - "University of Tasmania" - ], - "location": [ - { - "continent_code": "OC", - "continent_name": "Oceania", - "country_code": "AU", - "country_name": "Australia", - "country_subdivision_code": "TAS", - "country_subdivision_name": "Tasmania", - "lat": -42.87936, - "lng": 147.32941, - "name": "Hobart", - "@type": "wcrp:location", - "@id": "universal:location/01nfmeh72" - } - ], - "ror": "01nfmeh72", - "url": [ - "https://www.utas.edu.au", - "http://en.wikipedia.org/wiki/University_of_Tasmania" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "utas" -} diff --git a/organisation/utaustin.json b/organisation/utaustin.json deleted file mode 100644 index 6c123f02..00000000 --- a/organisation/utaustin.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "UTAustin", - "ui_label": "The University of Texas at Austin", - "description": "", - "acronyms": [], - "aliases": [ - "UT Austin" - ], - "established": 1876, - "kind": "education", - "labels": [ - "The University of Texas at Austin", - "Universidad de Texas en Austin", - "Université du texas à austin" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "TX", - "country_subdivision_name": "Texas", - "lat": 30.26715, - "lng": -97.74306, - "name": "Austin", - "@type": "wcrp:location", - "@id": "universal:location/00hj54h04" - } - ], - "ror": "00hj54h04", - "url": [ - "http://www.utexas.edu/", - "http://en.wikipedia.org/wiki/University_of_Texas_at_Austin" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "utaustin" -} diff --git a/organisation/uu.json b/organisation/uu.json deleted file mode 100644 index 701d86b3..00000000 --- a/organisation/uu.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "validation_key": "UU", - "ui_label": "Utrecht University", - "description": "", - "acronyms": [], - "aliases": [ - "Rijksuniversiteit Utrecht" - ], - "established": 1636, - "kind": "education", - "labels": [ - "Universiteit Utrecht", - "Utrecht University" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "NL", - "country_name": "The Netherlands", - "country_subdivision_code": "UT", - "country_subdivision_name": "Utrecht", - "lat": 52.09083, - "lng": 5.12222, - "name": "Utrecht", - "@type": "wcrp:location", - "@id": "universal:location/04pp8hn57" - } - ], - "ror": "04pp8hn57", - "url": [ - "https://www.uu.nl", - "http://en.wikipedia.org/wiki/Utrecht_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uu" -} diff --git a/organisation/uw.json b/organisation/uw.json deleted file mode 100644 index c052cb42..00000000 --- a/organisation/uw.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "validation_key": "UW", - "ui_label": "University of Washington", - "description": "", - "acronyms": [ - "UW" - ], - "aliases": [], - "established": 1861, - "kind": "Education", - "labels": [ - "Universidad de Washington", - "Université de Washington" - ], - "location": { - "city": "Seattle", - "country": [ - "United States", - "US" - ], - "lat": 47.60621, - "lon": -122.33207, - "@type": "esgf:location", - "@id": "universal:location/00cvxb145" - }, - "ror": "00cvxb145", - "url": [ - "https://www.washington.edu" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "uw" -} diff --git a/organisation/vua.json b/organisation/vua.json deleted file mode 100644 index a6776fc3..00000000 --- a/organisation/vua.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "validation_key": "VUA", - "ui_label": "Vrije Universiteit Amsterdam", - "description": "", - "acronyms": [ - "VU" - ], - "aliases": [ - "VU Amsterdam" - ], - "established": 1880, - "kind": "Education", - "labels": [], - "location": { - "city": "Amsterdam", - "country": [ - "The Netherlands", - "NL" - ], - "lat": 52.37403, - "lon": 4.88969, - "@type": "esgf:location", - "@id": "universal:location/008xxew50" - }, - "ror": "008xxew50", - "url": [ - "https://vu.nl/" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "vua" -} diff --git a/organisation/wcrc.json b/organisation/wcrc.json deleted file mode 100644 index 43d315fb..00000000 --- a/organisation/wcrc.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "WCRC", - "ui_label": "Woodwell Climate Research Center", - "description": "", - "acronyms": [ - "WHRC" - ], - "aliases": [ - "Woods Hole Research Center" - ], - "established": 1985, - "kind": "other", - "labels": [ - "Woodwell Climate Research Center" - ], - "location": [ - { - "continent_code": "NA", - "continent_name": "North America", - "country_code": "US", - "country_name": "United States", - "country_subdivision_code": "MA", - "country_subdivision_name": "Massachusetts", - "lat": 41.5515, - "lng": -70.61475, - "name": "Falmouth", - "@type": "wcrp:location", - "@id": "universal:location/04cvvej54" - } - ], - "ror": "04cvvej54", - "url": [ - "https://www.woodwellclimate.org/", - "https://en.wikipedia.org/wiki/Woods_Hole_Research_Center" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wcrc" -} diff --git a/organisation/wcrp.json b/organisation/wcrp.json deleted file mode 100644 index 7185546f..00000000 --- a/organisation/wcrp.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "WCRP", - "ui_label": "World Climate Research Programme", - "description": "", - "acronyms": [ - "WCRP" - ], - "aliases": [ - "World Climate Research Program" - ], - "established": 1980, - "kind": "nonprofit", - "labels": [ - "World Climate Research Programme" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "GE", - "country_subdivision_name": "Geneva", - "lat": 46.20222, - "lng": 6.14569, - "name": "Geneva", - "@type": "wcrp:location", - "@id": "universal:location/04frnva71" - } - ], - "ror": "04frnva71", - "url": [ - "https://www.wcrp-climate.org", - "https://en.wikipedia.org/wiki/World_Climate_Research_Programme" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wcrp" -} diff --git a/organisation/wits.json b/organisation/wits.json deleted file mode 100644 index e9600fe7..00000000 --- a/organisation/wits.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "validation_key": "Wits", - "ui_label": "The Open University of Japan", - "description": "", - "acronyms": [ - "OUJ" - ], - "aliases": [ - "Hōsō Daigaku", - "The University of the Air" - ], - "established": 1981, - "kind": "education", - "labels": [ - "The Open University of Japan", - "放送大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "12", - "country_subdivision_name": "Chiba", - "lat": 35.6, - "lng": 140.11667, - "name": "Chiba", - "@type": "wcrp:location", - "@id": "universal:location/03jyr9x65" - } - ], - "ror": "03jyr9x65", - "url": [ - "https://www.ouj.ac.jp", - "http://en.wikipedia.org/wiki/The_Open_University_of_Japan" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wits" -} diff --git a/organisation/wmo.json b/organisation/wmo.json deleted file mode 100644 index 06995b29..00000000 --- a/organisation/wmo.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "WMO", - "ui_label": "World Meteorological Organization", - "description": "", - "acronyms": [ - "OMM", - "WMO" - ], - "aliases": [], - "established": 1950, - "kind": "funder", - "labels": [ - "Organisation météorologique mondiale", - "Organización Meteorológica Mundial", - "World Meteorological Organization" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "GE", - "country_subdivision_name": "Geneva", - "lat": 46.20222, - "lng": 6.14569, - "name": "Geneva", - "@type": "wcrp:location", - "@id": "universal:location/011pjwf87" - } - ], - "ror": "011pjwf87", - "url": [ - "https://www.wmo.int/pages/index_en.html", - "https://en.wikipedia.org/wiki/World_Meteorological_Organization" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wmo" -} diff --git a/organisation/wsl.json b/organisation/wsl.json deleted file mode 100644 index ff24dce1..00000000 --- a/organisation/wsl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "validation_key": "WSL", - "ui_label": "Swiss Federal Institute for Forest, Snow and Landscape Research", - "description": "", - "acronyms": [ - "WSL" - ], - "aliases": [], - "established": 1888, - "kind": "facility", - "labels": [ - "Eidgenössische Forschungsanstalt für Wald, Schnee und Landschaft", - "Institut Fédéral de Recherches sur la Forêt, la Neige et le Paysage", - "Istituto Federale di Ricerca per la Foresta, la Neve e il Paesaggio", - "Swiss Federal Institute for Forest, Snow and Landscape Research" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "ZH", - "country_subdivision_name": "Zurich", - "lat": 47.35515, - "lng": 8.44256, - "name": "Birmensdorf", - "@type": "wcrp:location", - "@id": "universal:location/04bs5yc70" - } - ], - "ror": "04bs5yc70", - "url": [ - "http://www.wsl.ch/index_EN", - "https://en.wikipedia.org/wiki/Swiss_Federal_Institute_for_Forest,_Snow_and_Landscape_Research" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wsl" -} diff --git a/organisation/wur.json b/organisation/wur.json deleted file mode 100644 index 1351c5ef..00000000 --- a/organisation/wur.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "WUR", - "ui_label": "Rikkyo University", - "description": "", - "acronyms": [], - "aliases": [ - "Rikkyō daigaku", - "Saint Paul's Universit" - ], - "established": 1874, - "kind": "education", - "labels": [ - "Rikkyo University", - "立教大学" - ], - "location": [ - { - "continent_code": "AS", - "continent_name": "Asia", - "country_code": "JP", - "country_name": "Japan", - "country_subdivision_code": "13", - "country_subdivision_name": "Tokyo", - "lat": 35.6895, - "lng": 139.69171, - "name": "Tokyo", - "@type": "wcrp:location", - "@id": "universal:location/00x194q47" - } - ], - "ror": "00x194q47", - "url": [ - "https://www.rikkyo.ac.jp", - "http://en.wikipedia.org/wiki/Rikkyo_University" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wur" -} diff --git a/organisation/wwrp.json b/organisation/wwrp.json deleted file mode 100644 index 11598dee..00000000 --- a/organisation/wwrp.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "validation_key": "WWRP", - "ui_label": "World Climate Research Programme", - "description": "", - "acronyms": [ - "WCRP" - ], - "aliases": [ - "World Climate Research Program" - ], - "established": 1980, - "kind": "nonprofit", - "labels": [ - "World Climate Research Programme" - ], - "location": [ - { - "continent_code": "EU", - "continent_name": "Europe", - "country_code": "CH", - "country_name": "Switzerland", - "country_subdivision_code": "GE", - "country_subdivision_name": "Geneva", - "lat": 46.20222, - "lng": 6.14569, - "name": "Geneva", - "@type": "wcrp:location", - "@id": "universal:location/04frnva71" - } - ], - "ror": "04frnva71", - "url": [ - "https://www.wcrp-climate.org", - "https://en.wikipedia.org/wiki/World_Climate_Research_Programme" - ], - "@context": "_context", - "@type": [ - "wcrp:organisation", - "esgvoc:Organisation", - "universal", - "constants" - ], - "@id": "wwrp" -} diff --git a/product/README.md b/product/README.md deleted file mode 100644 index fb343050..00000000 --- a/product/README.md +++ /dev/null @@ -1,94 +0,0 @@ - - -
- -# Product (universal) - - - -## Description -Categorizes different types of climate model output products, distinguishing between various data processing levels and output formats. - -[View in HTML](https://wcrp-cmip.github.io/WCRP-universe/product/product) - -
- - - -
- - -| Item | Reference | -| --- | --- | -| Type | `wrcp:product` | -| Pydantic class | [`product`](https://github.com/ESGF/esgf-vocab/blob/main/src/esgvoc/api/data_descriptors/product.py): Product | -| | | -| JSON-LD | `universal:product` | -| Expanded reference link | [https://wcrp-cmip.github.io/WCRP-universe/product](https://wcrp-cmip.github.io/WCRP-universe/product) | -| Developer Repo | [![Open in GitHub](https://img.shields.io/badge/Open-GitHub-blue?logo=github&style=flat-square)](https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/product) | - - -
- No external links found. -
- -## Content Schema - -- **`id`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`description`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`drs_name`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`kind`** (**str**) - << No description in pydantic model (see esgvoc) >> -- **`type`** (**str**) - << No description in pydantic model (see esgvoc) >> - - - - - -
- -
- -## Usage - -### Online Viewer -To view a file in a browser use the content link with `.json` appended. -eg. https://github.com/WCRP-CMIP/WCRP-universe/tree/main/src-data/product/derived.json - -### Getting a File. - -A short example of how to integrate the computed ld file into your code. - -```python - -import cmipld -cmipld.get( "universal:product/derived") - -``` - -### Framing -Framing is a way we can filter the downloaded data to match what we want. -```js -frame = { - "@context": "https://wcrp-cmip.github.io/WCRP-universe/product/_context_", - "@type": "wcrp:product", - "keys we want": "", - "@explicit": True - - } - -``` - -```python - -import cmipld -cmipld.frame( "universal:product/derived" , frame) - -``` -
- - \ No newline at end of file diff --git a/product/_context b/product/_context deleted file mode 100644 index d318860d..00000000 --- a/product/_context +++ /dev/null @@ -1,8 +0,0 @@ -{ - "@context": { - "@alt_base": "https://wcrp-cmip.github.io/WCRP-constants/product/", - "@base": "https://constants.mipcvs.dev/product/", - "@esgvoc": "Product", - "@vocab": "https://constants.mipcvs.dev/docs/contents/Product/" - } -} \ No newline at end of file diff --git a/product/create.ipynb b/product/create.ipynb deleted file mode 100644 index 483812aa..00000000 --- a/product/create.ipynb +++ /dev/null @@ -1,206 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "import json \n", - "import jsonschema\n", - "from jsonschema import validate\n", - "\n", - "'''\n", - "mip-cmor-tables/auxillary/product\n", - "'''\n", - "\n", - "def validate_json(data, schema, name = 'none'):\n", - " try:\n", - " validate(instance=data, schema=schema)\n", - " print(f\"Validation succeeded: {name}\")\n", - " except jsonschema.exceptions.ValidationError as err:\n", - " print(\"Validation error:\", err.message)\n", - "\n", - "# repo_ctx = json.load(open('../../context.json'))" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "context = {}" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "product_schema = {\n", - " \"type\": \"object\",\n", - " \"properties\": {\n", - " \"@type\": {\n", - " \"type\": \"string\",\n", - " \"enum\": [\"cmip:product\"]\n", - " },\n", - " \"@id\": {\n", - " \"type\": \"string\",\n", - " \"pattern\": \"^mip-cmor-tables:auxillary/product/.+$\"\n", - " },\n", - " \"kind\": {\n", - " \"type\": \"string\"\n", - " },\n", - " \"description\": {\n", - " \"type\": \"string\"\n", - " },\n", - " },\n", - " \"required\": [\n", - " \"@type\",\n", - " \"@id\",\n", - " \"kind\",\n", - " \"description\"\n", - " ]\n", - "}\n", - "\n", - "loc = f'./schema.json'\n", - "json.dump(\n", - " product_schema, open(loc,'w'),indent=4)\n", - "\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "ctx = {\"@vocab\":\"product:\",**{}}\n", - "loc = f'./context.json'\n", - "\n", - "json.dump({\"@context\":ctx}, open(loc,'w'),indent=4)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "pd = {\n", - " \"model-output\": \"Output produced from a model simulation. This includes the various data points and metrics generated as a result of running climate models, which simulate physical, chemical, and biological processes affecting the climate system.\",\n", - " \"forcing-dataset\": \"Data sets used to drive model simulations. These include external factors like greenhouse gas concentrations, solar radiation, and land use changes that influence the climate model outputs.\",\n", - " \"derived\": \"Data that has been processed or transformed from raw model output. Derived data includes value-added products such as anomalies, indices, or other statistics that are computed from the original model outputs.\",\n", - " \"observations\": \"Data collected from direct measurements of the climate system. This includes data from ground stations, satellites, buoys, and other observational platforms, which serve as a reference for validating and comparing model outputs.\"\n", - "}\n" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Validation error: 'product' is not one of ['cmip:product']\n", - "Validation error: 'product' is not one of ['cmip:product']\n", - "Validation error: 'product' is not one of ['cmip:product']\n", - "Validation error: 'product' is not one of ['cmip:product']\n" - ] - } - ], - "source": [ - "\n", - "\n", - "for kind,description in pd.items():\n", - " ll = kind.lower().replace(' ','-')\n", - " entry = {\n", - " \"@type\":\"product\",\n", - " \"@id\": f\"mip-cmor-tables:auxillary/product/\"+ll,\n", - " \"kind\": kind,\n", - " \"description\": description\n", - " }\n", - " \n", - " validate_json(entry,product_schema,name = ll)\n", - "\n", - " loc = f'./{ll}.json'\n", - " json.dump(entry, open(loc,'w'),indent=4)\n", - " \n", - " \n", - " \n", - "# context['cmip:mip_era'] = {\"@vocab\":\"mip\",**repo_ctx['@context']}\n", - "\n", - "# context" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'observations'" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "kind" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "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.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/product/derived.json b/product/derived.json deleted file mode 100644 index 11f48dd6..00000000 --- a/product/derived.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "validation_key": "derived", - "ui_label": "", - "description": "Data that has been processed or transformed from raw model output. Derived data includes value-added products such as anomalies, indices, or other statistics that are computed from the original model outputs.", - "@context": "_context", - "@type": [ - "wcrp:product", - "esgvoc:Product", - "universal", - "constants" - ], - "@id": "derived" -} diff --git a/product/forcing-dataset.json b/product/forcing-dataset.json deleted file mode 100644 index 305782b1..00000000 --- a/product/forcing-dataset.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "validation_key": "forcing-dataset", - "ui_label": "", - "description": "Data sets used to drive model simulations. These include external factors like greenhouse gas concentrations, solar radiation, and land use changes that influence the climate model outputs.", - "@context": "_context", - "@type": [ - "wcrp:product", - "esgvoc:Product", - "universal", - "constants" - ], - "@id": "forcing-dataset" -} diff --git a/product/model-output.json b/product/model-output.json deleted file mode 100644 index 05b884bb..00000000 --- a/product/model-output.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "validation_key": "model-output", - "ui_label": "", - "description": "Output produced from a model simulation. This includes the various data points and metrics generated as a result of running climate models, which simulate physical, chemical, and biological processes affecting the climate system.", - "@context": "_context", - "@type": [ - "wcrp:product", - "esgvoc:Product", - "universal", - "constants" - ], - "@id": "model-output" -} diff --git a/product/observations.json b/product/observations.json deleted file mode 100644 index 81d94089..00000000 --- a/product/observations.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "validation_key": "observations", - "ui_label": "", - "description": "Data collected from direct measurements of the climate system. This includes data from ground stations, satellites, buoys, and other observational platforms, which serve as a reference for validating and comparing model outputs.", - "@context": "_context", - "@type": [ - "wcrp:product", - "esgvoc:Product", - "universal", - "constants" - ], - "@id": "observations" -}