diff --git a/.github/workflows/check_ld.yml b/.github/workflows/check_ld.yml index efcfcbe7..fbb08a11 100644 --- a/.github/workflows/check_ld.yml +++ b/.github/workflows/check_ld.yml @@ -9,6 +9,7 @@ on: jobs: check-graph: + if: false runs-on: ubuntu-latest # Specify the machine type steps: diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index a56755d6..24eee1ba 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -14,6 +14,7 @@ on: jobs: deploy-docs: + if: false runs-on: ubuntu-latest steps: diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 96183cd8..408b3575 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -18,6 +18,7 @@ concurrency: jobs: deploy: + if: false environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} diff --git a/.github/workflows/update-jsonld.yml b/.github/workflows/update-jsonld.yml index 3139763b..ab4c0331 100644 --- a/.github/workflows/update-jsonld.yml +++ b/.github/workflows/update-jsonld.yml @@ -9,6 +9,7 @@ on: jobs: update-jsonld: + if: false runs-on: ubuntu-latest # Specify the machine type steps: diff --git a/.gitignore b/.gitignore index b12747ad..9caef4f0 100644 --- a/.gitignore +++ b/.gitignore @@ -168,3 +168,4 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +scripts/WCRP-universe_known_branded_variable/* diff --git a/.python-version b/.python-version new file mode 100644 index 00000000..e4fba218 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md index ea29e4b2..91230818 100644 --- a/README.md +++ b/README.md @@ -41,3 +41,71 @@ This work is sponsored by the Regional and Global Model Analysis ([RGMA](https:/ alt="UK Met Office" >

+ + +This repository contains the controlled vocabularies (CVs) for the CMIP7 project. It defines project-specific collections of terms used for organizing + and documenting CMIP7 climate simulation data. + + ## Overview + + CMIP7_CVs is a project-specific CV repository that works in conjunction with the https://github.com/WCRP-CMIP/WCRP-universe repository. While the + universe contains all possible terms with complete metadata, this repository contains collections that reference those terms by ID, selecting only the + terms relevant to CMIP7. + + ## Key Concepts + + - **WCRP-universe**: The canonical repository containing all possible terms with full metadata (experiments, institutions, models, variables, etc.) + - **CMIP7_CVs**: Project-specific collections that reference universe terms by ID, with optional project-specific overrides + - **Collections**: Folders containing JSON files that list term IDs from a specific data descriptor (e.g., activity/, experiment/, institution/) + - **Terms**: Individual JSON files representing a controlled vocabulary entry (e.g., experiment/historical.json) + +## Repository Structure + + CMIP7_CVs/ + ├── project_specs.json # DRS (Data Reference Syntax) and global attributes + ├── project_specs.yaml # Project metadata + ├── activity/ # Activity IDs (CMIP, ScenarioMIP, etc.) + ├── experiment/ # Experiment definitions + ├── institution/ # Institutions + ├── source/ # Climate models + ├── brandedVariable/ # Variable names + ├── reportingInterval/ # Temporal frequencies + └── ... # Other collections + + Each collection folder contains: + - 000_context.jsonld: JSON-LD context for semantic web compatibility + - {term-id}.json: Individual term files that reference universe terms + + ### How Terms Link to the Universe + + Terms in CMIP7_CVs reference the universe using minimal JSON: +```json + Example - CMIP7_CVs/activity/cmip.json: + { + "@context": "000_context.jsonld", + "id": "cmip", + "type": "activity" + } +``` + This references the full definition in WCRP-universe/activity/cmip.json: + ```json + { + "@context": "000_context.jsonld", + "type": "activity", + "id": "cmip", + "name": "CMIP", + "cmip_acronym": "CMIP", + "long_name": "CMIP DECK: 1pctCO2, abrupt4xCO2, amip, ...", + "url": "https://gmd.copernicus.org/articles/9/1937/2016/...", + "drs_name": "CMIP" + } +``` + Projects can override or add properties by including them in their term files. + +### Using with esgvoc + + The https://github.com/ESGF/esgf-vocab provides a Python API and CLI to interact with these controlled vocabularies. + + Documentation can be find : https://esgf.github.io/esgf-vocab/ + + diff --git a/docs/SUMMARY.md b/_docs/SUMMARY.md similarity index 100% rename from docs/SUMMARY.md rename to _docs/SUMMARY.md diff --git a/docs/What_has_changed/experiment-structure-changes.md b/_docs/What_has_changed/experiment-structure-changes.md similarity index 100% rename from docs/What_has_changed/experiment-structure-changes.md rename to _docs/What_has_changed/experiment-structure-changes.md diff --git a/docs/assets/CMIP_Icon_CMYK_negative.svg b/_docs/assets/CMIP_Icon_CMYK_negative.svg similarity index 100% rename from docs/assets/CMIP_Icon_CMYK_negative.svg rename to _docs/assets/CMIP_Icon_CMYK_negative.svg diff --git a/docs/assets/CMIP_Icon_CMYK_negative_white.svg b/_docs/assets/CMIP_Icon_CMYK_negative_white.svg similarity index 100% rename from docs/assets/CMIP_Icon_CMYK_negative_white.svg rename to _docs/assets/CMIP_Icon_CMYK_negative_white.svg diff --git a/docs/auxilary/999_acknowlegements.md b/_docs/auxilary/999_acknowlegements.md similarity index 100% rename from docs/auxilary/999_acknowlegements.md rename to _docs/auxilary/999_acknowlegements.md diff --git a/docs/auxilary/acknowledgements.md b/_docs/auxilary/acknowledgements.md similarity index 100% rename from docs/auxilary/acknowledgements.md rename to _docs/auxilary/acknowledgements.md diff --git a/docs/auxilary/general.md b/_docs/auxilary/general.md similarity index 100% rename from docs/auxilary/general.md rename to _docs/auxilary/general.md diff --git a/docs/auxilary/stats.md b/_docs/auxilary/stats.md similarity index 100% rename from docs/auxilary/stats.md rename to _docs/auxilary/stats.md diff --git a/docs/global_attributes/CMIP6_Global_Attributes_DRS_Filenames.md b/_docs/global_attributes/CMIP6_Global_Attributes_DRS_Filenames.md similarity index 100% rename from docs/global_attributes/CMIP6_Global_Attributes_DRS_Filenames.md rename to _docs/global_attributes/CMIP6_Global_Attributes_DRS_Filenames.md diff --git a/docs/global_attributes/CMIP6_Global_Attributes_Quick_Reference.md b/_docs/global_attributes/CMIP6_Global_Attributes_Quick_Reference.md similarity index 100% rename from docs/global_attributes/CMIP6_Global_Attributes_Quick_Reference.md rename to _docs/global_attributes/CMIP6_Global_Attributes_Quick_Reference.md diff --git a/docs/global_attributes/README.md b/_docs/global_attributes/README.md similarity index 100% rename from docs/global_attributes/README.md rename to _docs/global_attributes/README.md diff --git a/docs/global_attributes/appendix1_global_attributes_labeling_experiments.md b/_docs/global_attributes/appendix1_global_attributes_labeling_experiments.md similarity index 100% rename from docs/global_attributes/appendix1_global_attributes_labeling_experiments.md rename to _docs/global_attributes/appendix1_global_attributes_labeling_experiments.md diff --git a/docs/global_attributes/appendix2_algorithms_nominal_resolution.md b/_docs/global_attributes/appendix2_algorithms_nominal_resolution.md similarity index 100% rename from docs/global_attributes/appendix2_algorithms_nominal_resolution.md rename to _docs/global_attributes/appendix2_algorithms_nominal_resolution.md diff --git a/docs/global_attributes/appendix2_algorithms_nominal_resolution_simplified.md b/_docs/global_attributes/appendix2_algorithms_nominal_resolution_simplified.md similarity index 100% rename from docs/global_attributes/appendix2_algorithms_nominal_resolution_simplified.md rename to _docs/global_attributes/appendix2_algorithms_nominal_resolution_simplified.md diff --git a/docs/global_attributes/appendix3_document_version_information.md b/_docs/global_attributes/appendix3_document_version_information.md similarity index 100% rename from docs/global_attributes/appendix3_document_version_information.md rename to _docs/global_attributes/appendix3_document_version_information.md diff --git a/docs/index.md b/_docs/index.md similarity index 100% rename from docs/index.md rename to _docs/index.md diff --git a/docs/scripts/embed.js b/_docs/scripts/embed.js similarity index 100% rename from docs/scripts/embed.js rename to _docs/scripts/embed.js diff --git a/docs/stylesheets/extra.css b/_docs/stylesheets/extra.css similarity index 100% rename from docs/stylesheets/extra.css rename to _docs/stylesheets/extra.css diff --git a/_scripts/create_activity_id.py b/_scripts/create_activity_id.py new file mode 100644 index 00000000..c06ef4d8 --- /dev/null +++ b/_scripts/create_activity_id.py @@ -0,0 +1,47 @@ +import json +import os +from pathlib import Path + +import esgvoc.api as ev +import requests + +# URLs of the JSON files on GitHub +json_url = "https://raw.githubusercontent.com/WCRP-CMIP/CMIP7-CVs/refs/heads/main/CMIP7-CVs_activity.json" + +# Directory where the JSON files will be saved +save_dir = "CMIP7_activity" + +# Create the directory if it doesn't exist +os.makedirs(save_dir, exist_ok=True) + + +# Function to fetch and load JSON data from a URL +def fetch_json(url): + response = requests.get(url) + response.raise_for_status() # Check for request errors + return response.json() + + +data = fetch_json(json_url)["activity"] + +known_sources_in_universe = ev.get_all_terms_in_data_descriptor("activity") +print(known_sources_in_universe) +for item in data: + found_item = None + for activity in known_sources_in_universe: + if activity.drs_name == item: + found_item = activity + break + + if found_item is None: + print(item, "not found in universe") + else: + # Create json file + dict_to_save = { + "@context": "000_context.jsonld", + "id": found_item.id, + "type": found_item.type, + } + # print(dict_to_save) + with open(Path(save_dir) / f"{found_item.id}.json", "w") as f: + json.dump(dict_to_save, f, indent=4) diff --git a/_scripts/create_bv_labels.py b/_scripts/create_bv_labels.py new file mode 100644 index 00000000..10eb4ad3 --- /dev/null +++ b/_scripts/create_bv_labels.py @@ -0,0 +1,24 @@ +import esgvoc.api as ev +from icecream import IceCreamDebugger +import devtools + +ic = IceCreamDebugger(argToStringFunction=devtools.pformat) + + +def main(): + known_bv_in_universe = ev.get_all_terms_in_data_descriptor("known_branded_variable") + i = 0 + for bv in known_bv_in_universe: + i = i + 1 + if i == 5: + break + ic(bv) + temporal_label = bv.temporal_label + vertical_label = bv.vertical_label + horizontal_label = bv.horizontal_label + area_label = bv.area_label + ic([temporal_label, vertical_label, horizontal_label, area_label]) + + +if __name__ == "__main__": + main() diff --git a/_scripts/create_experiment.py b/_scripts/create_experiment.py new file mode 100644 index 00000000..69692615 --- /dev/null +++ b/_scripts/create_experiment.py @@ -0,0 +1,235 @@ +import json +import os +from pathlib import Path +from datetime import datetime + +import esgvoc.api as ev +import requests +from icecream import IceCreamDebugger +import devtools + +ic = IceCreamDebugger(argToStringFunction=devtools.pformat) + +# URLs of the JSON files on GitHub +json_url = "https://raw.githubusercontent.com/WCRP-CMIP/CMIP7-CVs/refs/heads/main/CMIP7-CVs_experiment.json" + +# Directory where the JSON files will be saved +save_dir = "CMIP7_experiment" + +# Create the directory if it doesn't exist +os.makedirs(save_dir, exist_ok=True) + + +# Function to fetch and load JSON data from a URL +def fetch_json(url): + response = requests.get(url) + response.raise_for_status() # Check for request errors + return response.json() + + +def transform_json_to_model(json_data: dict) -> dict: + """Transform the input JSON to match your existing Pydantic model structure""" + + # Extract activity from the activity field + activity = [] + if "activity" in json_data and json_data["activity"]: + activity_id = ( + json_data["activity"].split("/")[-1] + if "/" in json_data["activity"] + else json_data["activity"] + ) + activity.append(activity_id) + + # Extract required and additional model components + model_realms = json_data.get("model-realms", []) + required_components = [] + additional_components = [] + if isinstance(model_realms, list): + for realm in model_realms: + component = ( + realm["id"].split("/")[-1] if "/" in realm["id"] else realm["id"] + ) + if realm.get("is-required", False): + required_components.append(component) + else: + additional_components.append(component) + else: + component = ( + model_realms["id"].split("/")[-1] + if "/" in model_realms["id"] + else model_realms["id"] + ) + if model_realms.get("is-required", False): + required_components.append(component) + else: + additional_components.append(component) + + # Extract parent experiment + parent_exp = json_data.get("parent-experiment", "none") + parent_experiment_id = ( + ["no parent"] + if parent_exp == "cmip7:experiment/none" or parent_exp == "none" + else [parent_exp.split("/")[-1]] + ) + + # Convert minimum years + min_years = json_data.get("minimum-number-of-years") + if isinstance(min_years, str) and min_years.isdigit(): + min_years = int(min_years) + elif min_years == "none" or not min_years: + min_years = None + + return { + "id": json_data.get("validation-key", "").lower(), + "type": "experiment", + "drs_name": json_data.get("validation-key", ""), + "activity": activity, + "description": json_data.get("description", ""), + "tier": int(json_data.get("tier")), + "experiment_id": json_data.get("validation-key", "").lower(), + "sub_experiment_id": ["none"], # Default as shown in your example + "experiment": json_data.get("ui-label", ""), + "required_model_components": required_components, + "additional_allowed_model_components": additional_components, + "start_year": None + if json_data.get("start-date") == "none" + else json_data.get("start-date"), + "end_year": None + if json_data.get("end-date") == "none" + else json_data.get("end-date"), + "min_number_yrs_per_sim": min_years, + # "parent_activity_id": ["no parent"], # Doesnot exist in CMIP7 + "parent_experiment_id": parent_experiment_id, + "@context": "000_context.jsonld", + "activity_id": activity, + } + + +def compare_models(model1_dict: dict, model2_dict: dict) -> dict: + """Compare two model dictionaries and return differences""" + + differences = { + "only_in_model1": {}, + "only_in_model2": {}, + "different_values": {}, + "same_values": {}, + } + + all_keys = set(model1_dict.keys()) | set(model2_dict.keys()) + + for key in all_keys: + if key not in model1_dict: + differences["only_in_model2"][key] = model2_dict[key] + elif key not in model2_dict: + differences["only_in_model1"][key] = model1_dict[key] + elif model1_dict[key] != model2_dict[key]: + differences["different_values"][key] = { + "model1": model1_dict[key], + "model2": model2_dict[key], + } + else: + differences["same_values"][key] = model1_dict[key] + + return differences + + +# +# def get_parent_activity_id(value: str, experiment_dir: str = "experiment"): +# if value == "none": +# return ["no parent"] +# +# project_root = Path.cwd().parent +# experiment_dir = project_root / "WCRP-universe" / "experiment" +# parent_file = os.path.join(experiment_dir, f"{value}.json") +# +# if not os.path.exists(parent_file): +# print(f"Parent file for {value} not found : {parent_file}") +# return ["no parent"] +# +# with open(parent_file, "r", encoding="utf-8") as f: +# parent_data = json.load(f) +# +# return parent_data.get("activity_id") +# +# +# def normalize_experiment_data(experiment_data): +# print(experiment_data) +# start_year = experiment_data.get( +# "start-date", experiment_data.get("start_year", "") +# ) +# end_year = experiment_data.get("end", experiment_data.get("end_year", "")) +# +# if not isinstance(start_year, int): +# try: +# if start_year.lower() != "none": +# start_year = datetime.fromisoformat(start_year).year +# except ValueError: +# start_year = None +# try: +# end_year = int(end_year) +# except ValueError: +# end_year = None # or handle as needed if conversion fails +# +# model_realms = experiment_data.get("model-realms", []) +# if isinstance(model_realms, dict): +# model_realms = [model_realms] +# +# return { +# "activity_id": experiment_data.get("activity", []), +# "additional_allowed_model_components": model_realms, +# "description": experiment_data.get("description", ""), +# "end_year": end_year, +# "experiment": experiment_data.get("ui-label", ""), +# "experiment_id": experiment_data.get("validation-key", ""), +# "min_number_yrs_per_sim": experiment_data.get("minimum-number-of-years") +# if ( +# experiment_data.get("minimum-number-of-years") != "none" +# and experiment_data.get("minimum-number-of-years") != "" +# ) +# else None, +# "parent_experiment_id": experiment_data.get("parent-experiment", []), +# "start_year": start_year, +# "sub_experiment_id": experiment_data.get("sub_experiment_id", []), +# "tier": experiment_data.get("tier", ""), +# } +# + +data = fetch_json(json_url)["experiment"] + +known_experiment_in_universe = ev.get_all_terms_in_data_descriptor("experiment") +# ic(known_experiment_in_universe) +for item, content in data.items(): + found_item = None + for experiment in known_experiment_in_universe: + if experiment.drs_name == item: + found_item = experiment + break + + if found_item is None: + print(item, "not found in universe") + else: + ic(found_item) + term_from_json = transform_json_to_model(content) + ic(term_from_json) + term_in_universe = ev.get_term_in_data_descriptor( + "experiment", found_item.id + ).dict() + + ic(term_in_universe) + compare = compare_models(term_from_json, term_in_universe) + ic(compare) + # normalized_data = normalize_experiment_data(content) + # ic(normalized_data) + # Create json file + dict_to_save = { + "@context": "000_context.jsonld", + "id": found_item.id, + "type": found_item.type, + } + overload_dict = { + k: v["model1"] for k, v in compare["different_values"].items() + } # dict_to_save = ( + dict_to_save = dict_to_save | overload_dict + # print(dict_to_save) + with open(Path(save_dir) / f"{found_item.id}.json", "w") as f: + json.dump(dict_to_save, f, indent=4) diff --git a/_scripts/create_known_branded_variable.py b/_scripts/create_known_branded_variable.py new file mode 100644 index 00000000..cf6edaf4 --- /dev/null +++ b/_scripts/create_known_branded_variable.py @@ -0,0 +1,83 @@ +import json +import os +import requests + +owner = "WCRP-CMIP" +repo = "WCRP-universe" +branch = "esgvoc_dev" +folder = "known_branded_variable" +out_root = "CMIP7_brandedVariable" + +# Optionnel : token GitHub pour éviter les limites d'API anonymes +headers = {} +token = os.getenv("GITHUB_TOKEN") +if token: + headers["Authorization"] = f"token {token}" + + +def list_files_in_folder(owner, repo, branch, folder): + """ + Retourne la liste des chemins (remote) des fichiers .json sous `folder`. + """ + branch_url = f"https://api.github.com/repos/{owner}/{repo}/branches/{branch}" + r = requests.get(branch_url, headers=headers) + r.raise_for_status() + commit_sha = r.json()["commit"]["sha"] + + tree_url = f"https://api.github.com/repos/{owner}/{repo}/git/trees/{commit_sha}?recursive=1" + r = requests.get(tree_url, headers=headers) + r.raise_for_status() + tree = r.json()["tree"] + + folder = folder.rstrip("/") + "/" + files = [ + item["path"] + for item in tree + if item["type"] == "blob" + and item["path"].startswith(folder) + and item["path"].lower().endswith(".json") # garder uniquement les .json + ] + return files + + +if __name__ == "__main__": + os.makedirs(out_root, exist_ok=True) + + remote_files = list_files_in_folder(owner, repo, branch, folder) + + # détection des basenames dupliqués + seen = {} + for remote_path in remote_files: + basename = os.path.basename(remote_path) + if basename in seen: + seen[basename].append(remote_path) + else: + seen[basename] = [remote_path] + + # Avertir s'il y a des duplicates + duplicates = {k: v for k, v in seen.items() if len(v) > 1} + if duplicates: + print( + "Attention : plusieurs fichiers distants partagent le même nom (basename). " + "Ils écraseront potentiellement l'un l'autre si on écrit seulement le basename." + ) + for name, paths in duplicates.items(): + print(f" {name}:") + for p in paths: + print(f" - {p}") + print( + "Si tu veux conserver la structure en sous-dossiers, dis-le et j'ajoute ça.\n" + ) + + for remote_path in remote_files: + basename = os.path.basename(remote_path) + cv_path = os.path.join(out_root, basename) + + data = { + "@context": "000_context.jsonld", + "id": os.path.basename(remote_path).split(".")[0], + "type": "known_branded_variable", + } + + with open(cv_path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=4, ensure_ascii=False) diff --git a/_scripts/create_labels.py b/_scripts/create_labels.py new file mode 100644 index 00000000..cd4dd3c3 --- /dev/null +++ b/_scripts/create_labels.py @@ -0,0 +1,61 @@ +import json +import os +from pathlib import Path +import esgvoc.api as ev +from icecream import IceCreamDebugger +import devtools + +ic = IceCreamDebugger(argToStringFunction=devtools.pformat) + + +def main(): + known_bv_in_universe = ev.get_all_terms_in_data_descriptor("known_branded_variable") + i = 0 + for bv in known_bv_in_universe: + i = i + 1 + ic(bv) + temporal_label = bv.temporal_label + vertical_label = bv.vertical_label + horizontal_label = bv.horizontal_label + area_label = bv.area_label + ic([temporal_label, vertical_label, horizontal_label, area_label]) + + temporal_label_data = { + "@context": "000_context.jsonld", + "id": temporal_label, + "type": "temporal_label", + } + + vertical_label_data = { + "@context": "000_context.jsonld", + "id": vertical_label, + "type": "vertical_label", + } + + horizontal_label_data = { + "@context": "000_context.jsonld", + "id": horizontal_label, + "type": "horizontal_label", + } + + area_label_data = { + "@context": "000_context.jsonld", + "id": area_label, + "type": "area_label", + } + + with open(Path("CMIP7_temporalLabel") / f"{temporal_label}.json", "w") as f: + json.dump(temporal_label_data, f, indent=4, ensure_ascii=False) + + with open(Path("CMIP7_verticalLabel") / f"{vertical_label}.json", "w") as f: + json.dump(vertical_label_data, f, indent=4, ensure_ascii=False) + + with open(Path("CMIP7_horizontalLabel") / f"{horizontal_label}.json", "w") as f: + json.dump(horizontal_label_data, f, indent=4, ensure_ascii=False) + + with open(Path("CMIP7_areaLabel") / f"{area_label}.json", "w") as f: + json.dump(area_label_data, f, indent=4, ensure_ascii=False) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/activity/000_context.jsonld b/activity/000_context.jsonld new file mode 100644 index 00000000..2df7d0ad --- /dev/null +++ b/activity/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/activity/", + "activity": "https://espri-mod.github.io/mip-cmor-tables/activity" + } +} diff --git a/activity/aerchemmip.json b/activity/aerchemmip.json new file mode 100644 index 00000000..e27f415e --- /dev/null +++ b/activity/aerchemmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "aerchemmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/c4mip.json b/activity/c4mip.json new file mode 100644 index 00000000..993f140d --- /dev/null +++ b/activity/c4mip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c4mip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/cfmip.json b/activity/cfmip.json new file mode 100644 index 00000000..1715473b --- /dev/null +++ b/activity/cfmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/cmip.json b/activity/cmip.json new file mode 100644 index 00000000..994c921d --- /dev/null +++ b/activity/cmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/damip.json b/activity/damip.json new file mode 100644 index 00000000..3398c41a --- /dev/null +++ b/activity/damip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "damip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/dcpp.json b/activity/dcpp.json new file mode 100644 index 00000000..cda5cfb2 --- /dev/null +++ b/activity/dcpp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dcpp", + "type": "activity" +} \ No newline at end of file diff --git a/activity/geomip.json b/activity/geomip.json new file mode 100644 index 00000000..806a4427 --- /dev/null +++ b/activity/geomip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "geomip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/lmip.json b/activity/lmip.json new file mode 100644 index 00000000..f00c4897 --- /dev/null +++ b/activity/lmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/pmip.json b/activity/pmip.json new file mode 100644 index 00000000..18f9e33e --- /dev/null +++ b/activity/pmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/rfmip.json b/activity/rfmip.json new file mode 100644 index 00000000..c64e526a --- /dev/null +++ b/activity/rfmip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rfmip", + "type": "activity" +} \ No newline at end of file diff --git a/activity/scenariomip.json b/activity/scenariomip.json new file mode 100644 index 00000000..8ac3821a --- /dev/null +++ b/activity/scenariomip.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "scenariomip", + "type": "activity" +} \ No newline at end of file diff --git a/archive/000_context.jsonld b/archive/000_context.jsonld new file mode 100644 index 00000000..526718f4 --- /dev/null +++ b/archive/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/archive/", + "conventions": "https://espri-mod.github.io/mip-cmor-tables/archive" + } +} diff --git a/archive/wcrp.json b/archive/wcrp.json new file mode 100644 index 00000000..5e86b0be --- /dev/null +++ b/archive/wcrp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wcrp", + "type": "archive" +} diff --git a/areaLabel/000_context.jsonld b/areaLabel/000_context.jsonld new file mode 100644 index 00000000..bb8958f9 --- /dev/null +++ b/areaLabel/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/area_label/", + "area_label": "https://espri-mod.github.io/mip-cmor-tables/area_label" + } +} diff --git a/areaLabel/air.json b/areaLabel/air.json new file mode 100644 index 00000000..7c5e298d --- /dev/null +++ b/areaLabel/air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "air", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/ccl.json b/areaLabel/ccl.json new file mode 100644 index 00000000..a3ff4e7c --- /dev/null +++ b/areaLabel/ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccl", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/cl.json b/areaLabel/cl.json new file mode 100644 index 00000000..c7fed3f2 --- /dev/null +++ b/areaLabel/cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cl", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/crp.json b/areaLabel/crp.json new file mode 100644 index 00000000..52f12a1e --- /dev/null +++ b/areaLabel/crp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "crp", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/fis.json b/areaLabel/fis.json new file mode 100644 index 00000000..35f8ac50 --- /dev/null +++ b/areaLabel/fis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fis", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/gis.json b/areaLabel/gis.json new file mode 100644 index 00000000..b75a8f7e --- /dev/null +++ b/areaLabel/gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gis", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/ifs.json b/areaLabel/ifs.json new file mode 100644 index 00000000..e268fcfe --- /dev/null +++ b/areaLabel/ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ifs", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/is.json b/areaLabel/is.json new file mode 100644 index 00000000..fa5645b1 --- /dev/null +++ b/areaLabel/is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "is", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/lnd.json b/areaLabel/lnd.json new file mode 100644 index 00000000..ed68ec52 --- /dev/null +++ b/areaLabel/lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lnd", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/multi.json b/areaLabel/multi.json new file mode 100644 index 00000000..753723ba --- /dev/null +++ b/areaLabel/multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "multi", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/ng.json b/areaLabel/ng.json new file mode 100644 index 00000000..cbe7579f --- /dev/null +++ b/areaLabel/ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ng", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/scl.json b/areaLabel/scl.json new file mode 100644 index 00000000..e3346406 --- /dev/null +++ b/areaLabel/scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "scl", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/sea.json b/areaLabel/sea.json new file mode 100644 index 00000000..9a4d3be5 --- /dev/null +++ b/areaLabel/sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sea", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/shb.json b/areaLabel/shb.json new file mode 100644 index 00000000..a2e23c8d --- /dev/null +++ b/areaLabel/shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "shb", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/si.json b/areaLabel/si.json new file mode 100644 index 00000000..8d2c4348 --- /dev/null +++ b/areaLabel/si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "si", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/simp.json b/areaLabel/simp.json new file mode 100644 index 00000000..102f3aef --- /dev/null +++ b/areaLabel/simp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simp", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/sir.json b/areaLabel/sir.json new file mode 100644 index 00000000..ae676ba3 --- /dev/null +++ b/areaLabel/sir.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sir", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/sn.json b/areaLabel/sn.json new file mode 100644 index 00000000..9b15d48e --- /dev/null +++ b/areaLabel/sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sn", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/tree.json b/areaLabel/tree.json new file mode 100644 index 00000000..91dd5e9e --- /dev/null +++ b/areaLabel/tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tree", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/u.json b/areaLabel/u.json new file mode 100644 index 00000000..9eb58544 --- /dev/null +++ b/areaLabel/u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "u", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/ufs.json b/areaLabel/ufs.json new file mode 100644 index 00000000..087287fd --- /dev/null +++ b/areaLabel/ufs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ufs", + "type": "area_label" +} \ No newline at end of file diff --git a/areaLabel/veg.json b/areaLabel/veg.json new file mode 100644 index 00000000..d7dea4fd --- /dev/null +++ b/areaLabel/veg.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "veg", + "type": "area_label" +} \ No newline at end of file diff --git a/attr_specs.yaml b/attr_specs.yaml new file mode 100644 index 00000000..98697588 --- /dev/null +++ b/attr_specs.yaml @@ -0,0 +1,109 @@ +- source_collection: brandedVariable + field_name: branded_variable + is_required: true + value_type: string +- source_collection: temporalLabel + field_name: temporal_label + is_required: true + value_type: string +- source_collection: verticalLabel + field_name: vertical_label + is_required: true + value_type: string +- source_collection: horizontalLabel + field_name: horizontal_label + is_required: true + value_type: string +- source_collection: areaLabel + field_name: area_variable + is_required: true + value_type: string +- source_collection: reportingInterval + field_name: frequency + is_required: true + value_type: string +- source_collection: region + is_required: true + value_type: string +- source_collection: gridLabel + field_name: grid + is_required: true + value_type: string +- source_collection: source + field_name: source_id + is_required: true + value_type: string +- source_collection: experiment + field_name: experiment_id + is_required: true + value_type: string +- source_collection: datasetVariant + field_name: variant_label + is_required: true + value_type: string +- source_collection: hostCollection + field_name: host_collection + is_required: true + value_type: string +- source_collection: activity + field_name: activity_id + is_required: true + value_type: string +- source_collection: drsSpecs + field_name: drs_specs + is_required: true + value_type: string +- source_collection: datasetVersion + field_name: directory_date + is_required: true + value_type: string +- source_collection: timeRange + field_name: time_range + is_required: true + value_type: string +- source_collection: institution + field_name: institution_id + is_required: true + value_type: string +- source_collection: realm + is_required: true + value_type: string +- source_collection: license + is_required: true + value_type: string +- source_collection: archive + field_name: archive_id + is_required: true + value_type: string +- source_collection: dataConventions + field_name: conventions + is_required: true + value_type: string +- source_collection: dateCreated + field_name: creation_date + is_required: true + value_type: string +- source_collection: realisation + field_name: realisation_index + is_required: true + value_type: string +- source_collection: initialization + field_name: initialisation_index + is_required: true + value_type: string +- source_collection: physics + field_name: physic_index + is_required: true + value_type: string +- source_collection: forcing + field_name: forcing_index + is_required: true + value_type: string +- source_collection: uniqueField + field_name: tracking_id + is_required: true + value_type: string +- source_collection: datasetSpecs + field_name: data_specs_version + is_required: true + value_type: string diff --git a/brandedVariable/000_context.jsonld b/brandedVariable/000_context.jsonld new file mode 100644 index 00000000..ed32b9db --- /dev/null +++ b/brandedVariable/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/known_branded_variable/", + "known_branded_variable": "https://espri-mod.github.io/mip-cmor-tables/known_branded_variable" + } +} diff --git a/brandedVariable/abs550aer_tavg-u-hxy-u.json b/brandedVariable/abs550aer_tavg-u-hxy-u.json new file mode 100644 index 00000000..38d9ed65 --- /dev/null +++ b/brandedVariable/abs550aer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550aer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550bc_tavg-u-hxy-u.json b/brandedVariable/abs550bc_tavg-u-hxy-u.json new file mode 100644 index 00000000..8bb86b67 --- /dev/null +++ b/brandedVariable/abs550bc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550bc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550dust_tavg-u-hxy-u.json b/brandedVariable/abs550dust_tavg-u-hxy-u.json new file mode 100644 index 00000000..61f2b3b1 --- /dev/null +++ b/brandedVariable/abs550dust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550dust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550no3_tavg-u-hxy-u.json b/brandedVariable/abs550no3_tavg-u-hxy-u.json new file mode 100644 index 00000000..831f02ae --- /dev/null +++ b/brandedVariable/abs550no3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550no3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550oa_tavg-u-hxy-u.json b/brandedVariable/abs550oa_tavg-u-hxy-u.json new file mode 100644 index 00000000..34dbe278 --- /dev/null +++ b/brandedVariable/abs550oa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550oa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550so4_tavg-u-hxy-u.json b/brandedVariable/abs550so4_tavg-u-hxy-u.json new file mode 100644 index 00000000..f9cac16f --- /dev/null +++ b/brandedVariable/abs550so4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550so4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/abs550ss_tavg-u-hxy-u.json b/brandedVariable/abs550ss_tavg-u-hxy-u.json new file mode 100644 index 00000000..1079883a --- /dev/null +++ b/brandedVariable/abs550ss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "abs550ss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/absscint_tavg-op4-hxy-sea.json b/brandedVariable/absscint_tavg-op4-hxy-sea.json new file mode 100644 index 00000000..4869dd47 --- /dev/null +++ b/brandedVariable/absscint_tavg-op4-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "absscint_tavg-op4-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/acabf_tavg-u-hxy-is.json b/brandedVariable/acabf_tavg-u-hxy-is.json new file mode 100644 index 00000000..2bfa4fc1 --- /dev/null +++ b/brandedVariable/acabf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "acabf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/agesno_tavg-u-hxy-lnd.json b/brandedVariable/agesno_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..1b21a2ad --- /dev/null +++ b/brandedVariable/agesno_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "agesno_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/agessc_tavg-ol-hxy-sea.json b/brandedVariable/agessc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..9b70507a --- /dev/null +++ b/brandedVariable/agessc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "agessc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/airmass_tavg-al-hxy-u.json b/brandedVariable/airmass_tavg-al-hxy-u.json new file mode 100644 index 00000000..4c79cc7f --- /dev/null +++ b/brandedVariable/airmass_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "airmass_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/albc_tavg-u-hxy-veg.json b/brandedVariable/albc_tavg-u-hxy-veg.json new file mode 100644 index 00000000..5bdcd672 --- /dev/null +++ b/brandedVariable/albc_tavg-u-hxy-veg.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "albc_tavg-u-hxy-veg", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/albisccp_tavg-u-hxy-cl.json b/brandedVariable/albisccp_tavg-u-hxy-cl.json new file mode 100644 index 00000000..0d9393ce --- /dev/null +++ b/brandedVariable/albisccp_tavg-u-hxy-cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "albisccp_tavg-u-hxy-cl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/albsrfc_tavg-u-hxy-sn.json b/brandedVariable/albsrfc_tavg-u-hxy-sn.json new file mode 100644 index 00000000..9cdd29eb --- /dev/null +++ b/brandedVariable/albsrfc_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "albsrfc_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/albsrfc_tavg-u-hxy-u.json b/brandedVariable/albsrfc_tavg-u-hxy-u.json new file mode 100644 index 00000000..0b7c27fb --- /dev/null +++ b/brandedVariable/albsrfc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "albsrfc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/aoanh_tavg-al-hxy-u.json b/brandedVariable/aoanh_tavg-al-hxy-u.json new file mode 100644 index 00000000..e0ca7232 --- /dev/null +++ b/brandedVariable/aoanh_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "aoanh_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/aod550volso4_tavg-u-hxy-u.json b/brandedVariable/aod550volso4_tavg-u-hxy-u.json new file mode 100644 index 00000000..565a51b9 --- /dev/null +++ b/brandedVariable/aod550volso4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "aod550volso4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/arag_tavg-d0m-hxy-sea.json b/brandedVariable/arag_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..59036029 --- /dev/null +++ b/brandedVariable/arag_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "arag_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/arag_tavg-ol-hxy-sea.json b/brandedVariable/arag_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..1e0df0b0 --- /dev/null +++ b/brandedVariable/arag_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "arag_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/areacell_tavg-u-hxy-u.json b/brandedVariable/areacell_tavg-u-hxy-u.json new file mode 100644 index 00000000..288a17a0 --- /dev/null +++ b/brandedVariable/areacell_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "areacell_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/areacell_ti-u-hxy-u.json b/brandedVariable/areacell_ti-u-hxy-u.json new file mode 100644 index 00000000..0b1868a6 --- /dev/null +++ b/brandedVariable/areacell_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "areacell_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bacc_tavg-d0m-hxy-sea.json b/brandedVariable/bacc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..8ec45019 --- /dev/null +++ b/brandedVariable/bacc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bacc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/baresoilFrac_tavg-u-hxy-u.json b/brandedVariable/baresoilFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..955dd702 --- /dev/null +++ b/brandedVariable/baresoilFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "baresoilFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/basin_ti-u-hxy-u.json b/brandedVariable/basin_ti-u-hxy-u.json new file mode 100644 index 00000000..2f074bc4 --- /dev/null +++ b/brandedVariable/basin_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "basin_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bigthetao_tavg-ol-hm-sea.json b/brandedVariable/bigthetao_tavg-ol-hm-sea.json new file mode 100644 index 00000000..10b14c59 --- /dev/null +++ b/brandedVariable/bigthetao_tavg-ol-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bigthetao_tavg-ol-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bigthetao_tavg-ol-hxy-sea.json b/brandedVariable/bigthetao_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d5feb726 --- /dev/null +++ b/brandedVariable/bigthetao_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bigthetao_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bigthetao_tavg-op20bar-hxy-sea.json b/brandedVariable/bigthetao_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..205fc7ef --- /dev/null +++ b/brandedVariable/bigthetao_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bigthetao_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bldep_tavg-u-hxy-u.json b/brandedVariable/bldep_tavg-u-hxy-u.json new file mode 100644 index 00000000..ee5bd22d --- /dev/null +++ b/brandedVariable/bldep_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bldep_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bldep_tmax-u-hxy-u.json b/brandedVariable/bldep_tmax-u-hxy-u.json new file mode 100644 index 00000000..d9dbb070 --- /dev/null +++ b/brandedVariable/bldep_tmax-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bldep_tmax-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bldep_tmin-u-hxy-u.json b/brandedVariable/bldep_tmin-u-hxy-u.json new file mode 100644 index 00000000..4c20718f --- /dev/null +++ b/brandedVariable/bldep_tmin-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bldep_tmin-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bldep_tpt-u-hxy-u.json b/brandedVariable/bldep_tpt-u-hxy-u.json new file mode 100644 index 00000000..aac7585e --- /dev/null +++ b/brandedVariable/bldep_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bldep_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bry_tavg-p39-hy-air.json b/brandedVariable/bry_tavg-p39-hy-air.json new file mode 100644 index 00000000..9e89c3ec --- /dev/null +++ b/brandedVariable/bry_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bry_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/bs550aer_tpt-al-hxy-u.json b/brandedVariable/bs550aer_tpt-al-hxy-u.json new file mode 100644 index 00000000..aeece9b2 --- /dev/null +++ b/brandedVariable/bs550aer_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "bs550aer_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/burntFractionAll_tavg-u-hxy-u.json b/brandedVariable/burntFractionAll_tavg-u-hxy-u.json new file mode 100644 index 00000000..9d9d7115 --- /dev/null +++ b/brandedVariable/burntFractionAll_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "burntFractionAll_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c13Land_tavg-u-hxy-lnd.json b/brandedVariable/c13Land_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..d21e2a1f --- /dev/null +++ b/brandedVariable/c13Land_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c13Land_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c13Litter_tavg-u-hxy-lnd.json b/brandedVariable/c13Litter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b5264c12 --- /dev/null +++ b/brandedVariable/c13Litter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c13Litter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c13Soil_tavg-u-hxy-lnd.json b/brandedVariable/c13Soil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..7880d03c --- /dev/null +++ b/brandedVariable/c13Soil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c13Soil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c13Veg_tavg-u-hxy-lnd.json b/brandedVariable/c13Veg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..9d8629ae --- /dev/null +++ b/brandedVariable/c13Veg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c13Veg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c14Land_tavg-u-hxy-lnd.json b/brandedVariable/c14Land_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c8e2ff4a --- /dev/null +++ b/brandedVariable/c14Land_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c14Land_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c14Litter_tavg-u-hxy-lnd.json b/brandedVariable/c14Litter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e934d8af --- /dev/null +++ b/brandedVariable/c14Litter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c14Litter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c14Soil_tavg-u-hxy-lnd.json b/brandedVariable/c14Soil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cfd97665 --- /dev/null +++ b/brandedVariable/c14Soil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c14Soil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c14Veg_tavg-u-hxy-lnd.json b/brandedVariable/c14Veg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..48cddee0 --- /dev/null +++ b/brandedVariable/c14Veg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c14Veg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c2h4_tavg-al-hxy-u.json b/brandedVariable/c2h4_tavg-al-hxy-u.json new file mode 100644 index 00000000..ae2a5977 --- /dev/null +++ b/brandedVariable/c2h4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c2h4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c2h5oh_tavg-al-hxy-u.json b/brandedVariable/c2h5oh_tavg-al-hxy-u.json new file mode 100644 index 00000000..fe483e09 --- /dev/null +++ b/brandedVariable/c2h5oh_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c2h5oh_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c2h6_tavg-al-hxy-u.json b/brandedVariable/c2h6_tavg-al-hxy-u.json new file mode 100644 index 00000000..648c5a2a --- /dev/null +++ b/brandedVariable/c2h6_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c2h6_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c3PftFrac_tavg-u-hxy-u.json b/brandedVariable/c3PftFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..5f3dd149 --- /dev/null +++ b/brandedVariable/c3PftFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c3PftFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c3h6_tavg-al-hxy-u.json b/brandedVariable/c3h6_tavg-al-hxy-u.json new file mode 100644 index 00000000..68bdb993 --- /dev/null +++ b/brandedVariable/c3h6_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c3h6_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c3h8_tavg-al-hxy-u.json b/brandedVariable/c3h8_tavg-al-hxy-u.json new file mode 100644 index 00000000..2acfdce3 --- /dev/null +++ b/brandedVariable/c3h8_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c3h8_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c4PftFrac_tavg-u-hxy-u.json b/brandedVariable/c4PftFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..1d4080a2 --- /dev/null +++ b/brandedVariable/c4PftFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c4PftFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/c4h10_tavg-al-hxy-u.json b/brandedVariable/c4h10_tavg-al-hxy-u.json new file mode 100644 index 00000000..c3738d9d --- /dev/null +++ b/brandedVariable/c4h10_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "c4h10_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cGeologicStorage_tavg-u-hxy-u.json b/brandedVariable/cGeologicStorage_tavg-u-hxy-u.json new file mode 100644 index 00000000..73e12546 --- /dev/null +++ b/brandedVariable/cGeologicStorage_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cGeologicStorage_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLand_tavg-u-hxy-lnd.json b/brandedVariable/cLand_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..6b952725 --- /dev/null +++ b/brandedVariable/cLand_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLand_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLeaf_tavg-u-hxy-lnd.json b/brandedVariable/cLeaf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..a27afaa5 --- /dev/null +++ b/brandedVariable/cLeaf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLeaf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLitterCwd_tavg-u-hxy-lnd.json b/brandedVariable/cLitterCwd_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..ef341762 --- /dev/null +++ b/brandedVariable/cLitterCwd_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLitterCwd_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLitterLut_tpt-u-hxy-multi.json b/brandedVariable/cLitterLut_tpt-u-hxy-multi.json new file mode 100644 index 00000000..1f989fe7 --- /dev/null +++ b/brandedVariable/cLitterLut_tpt-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLitterLut_tpt-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLitterSubSurf_tavg-u-hxy-lnd.json b/brandedVariable/cLitterSubSurf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..698d72a3 --- /dev/null +++ b/brandedVariable/cLitterSubSurf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLitterSubSurf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLitterSurf_tavg-u-hxy-lnd.json b/brandedVariable/cLitterSurf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..7b6511cd --- /dev/null +++ b/brandedVariable/cLitterSurf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLitterSurf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cLitter_tavg-u-hxy-lnd.json b/brandedVariable/cLitter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2ee431b7 --- /dev/null +++ b/brandedVariable/cLitter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cLitter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cOther_tavg-u-hxy-lnd.json b/brandedVariable/cOther_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..dad0d571 --- /dev/null +++ b/brandedVariable/cOther_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cOther_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cProductLut_tpt-u-hxy-multi.json b/brandedVariable/cProductLut_tpt-u-hxy-multi.json new file mode 100644 index 00000000..53816f4c --- /dev/null +++ b/brandedVariable/cProductLut_tpt-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cProductLut_tpt-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cProduct_tavg-u-hxy-lnd.json b/brandedVariable/cProduct_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e78e90b8 --- /dev/null +++ b/brandedVariable/cProduct_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cProduct_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cRoot_tavg-u-hxy-lnd.json b/brandedVariable/cRoot_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..ec117581 --- /dev/null +++ b/brandedVariable/cRoot_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cRoot_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cSoilLut_tpt-u-hxy-multi.json b/brandedVariable/cSoilLut_tpt-u-hxy-multi.json new file mode 100644 index 00000000..c517cec5 --- /dev/null +++ b/brandedVariable/cSoilLut_tpt-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cSoilLut_tpt-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cSoilPools_tavg-u-hxy-lnd.json b/brandedVariable/cSoilPools_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e0a9fda1 --- /dev/null +++ b/brandedVariable/cSoilPools_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cSoilPools_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cSoil_tavg-d100cm-hxy-lnd.json b/brandedVariable/cSoil_tavg-d100cm-hxy-lnd.json new file mode 100644 index 00000000..b121d627 --- /dev/null +++ b/brandedVariable/cSoil_tavg-d100cm-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cSoil_tavg-d100cm-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cSoil_tavg-sl-hxy-lnd.json b/brandedVariable/cSoil_tavg-sl-hxy-lnd.json new file mode 100644 index 00000000..2590dcfb --- /dev/null +++ b/brandedVariable/cSoil_tavg-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cSoil_tavg-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cSoil_tavg-u-hxy-lnd.json b/brandedVariable/cSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e066ad6d --- /dev/null +++ b/brandedVariable/cSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cStem_tavg-u-hxy-lnd.json b/brandedVariable/cStem_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4cd0b39b --- /dev/null +++ b/brandedVariable/cStem_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cStem_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cVegLut_tpt-u-hxy-multi.json b/brandedVariable/cVegLut_tpt-u-hxy-multi.json new file mode 100644 index 00000000..8dd9eecd --- /dev/null +++ b/brandedVariable/cVegLut_tpt-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cVegLut_tpt-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cVeg_tavg-u-hxy-lnd.json b/brandedVariable/cVeg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4c879316 --- /dev/null +++ b/brandedVariable/cVeg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cVeg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cVeg_tavg-u-hxy-ng.json b/brandedVariable/cVeg_tavg-u-hxy-ng.json new file mode 100644 index 00000000..378b5998 --- /dev/null +++ b/brandedVariable/cVeg_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cVeg_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cVeg_tavg-u-hxy-shb.json b/brandedVariable/cVeg_tavg-u-hxy-shb.json new file mode 100644 index 00000000..179892c2 --- /dev/null +++ b/brandedVariable/cVeg_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cVeg_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cVeg_tavg-u-hxy-tree.json b/brandedVariable/cVeg_tavg-u-hxy-tree.json new file mode 100644 index 00000000..4bb7bd81 --- /dev/null +++ b/brandedVariable/cVeg_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cVeg_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cWood_tavg-u-hxy-lnd.json b/brandedVariable/cWood_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b422d92d --- /dev/null +++ b/brandedVariable/cWood_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cWood_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/calc_tavg-d0m-hxy-sea.json b/brandedVariable/calc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..0b23f3d2 --- /dev/null +++ b/brandedVariable/calc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "calc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/calc_tavg-ol-hxy-sea.json b/brandedVariable/calc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d1ac1ad1 --- /dev/null +++ b/brandedVariable/calc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "calc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccb_tavg-u-hxy-ccl.json b/brandedVariable/ccb_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..c2516131 --- /dev/null +++ b/brandedVariable/ccb_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccb_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccb_tpt-u-hxys-u.json b/brandedVariable/ccb_tpt-u-hxys-u.json new file mode 100644 index 00000000..cfb4434b --- /dev/null +++ b/brandedVariable/ccb_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccb_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccldncl_tavg-u-hxy-ccl.json b/brandedVariable/ccldncl_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..b9efdb47 --- /dev/null +++ b/brandedVariable/ccldncl_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccldncl_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccn1_tavg-al-hxy-u.json b/brandedVariable/ccn1_tavg-al-hxy-u.json new file mode 100644 index 00000000..9aeec387 --- /dev/null +++ b/brandedVariable/ccn1_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccn1_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccn_tavg-u-hxy-ccl.json b/brandedVariable/ccn_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..a0c72a5b --- /dev/null +++ b/brandedVariable/ccn_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccn_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ccnp02_tavg-al-hxy-u.json b/brandedVariable/ccnp02_tavg-al-hxy-u.json new file mode 100644 index 00000000..4aa7a7a0 --- /dev/null +++ b/brandedVariable/ccnp02_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ccnp02_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cct_tavg-u-hxy-ccl.json b/brandedVariable/cct_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..fa627acb --- /dev/null +++ b/brandedVariable/cct_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cct_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cct_tpt-u-hxys-u.json b/brandedVariable/cct_tpt-u-hxys-u.json new file mode 100644 index 00000000..c8feaa65 --- /dev/null +++ b/brandedVariable/cct_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cct_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cdnc_tavg-al-hxy-u.json b/brandedVariable/cdnc_tavg-al-hxy-u.json new file mode 100644 index 00000000..0b819d94 --- /dev/null +++ b/brandedVariable/cdnc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cdnc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfadDbze94_tavg-h40-hxy-air.json b/brandedVariable/cfadDbze94_tavg-h40-hxy-air.json new file mode 100644 index 00000000..6e1814bc --- /dev/null +++ b/brandedVariable/cfadDbze94_tavg-h40-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfadDbze94_tavg-h40-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfadLidarsr532_tavg-h40-hxy-air.json b/brandedVariable/cfadLidarsr532_tavg-h40-hxy-air.json new file mode 100644 index 00000000..0b5cb82a --- /dev/null +++ b/brandedVariable/cfadLidarsr532_tavg-h40-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfadLidarsr532_tavg-h40-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfc113_tavg-u-hm-u.json b/brandedVariable/cfc113_tavg-u-hm-u.json new file mode 100644 index 00000000..f2c936b9 --- /dev/null +++ b/brandedVariable/cfc113_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfc113_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfc114_tavg-al-hxy-u.json b/brandedVariable/cfc114_tavg-al-hxy-u.json new file mode 100644 index 00000000..737aa5a9 --- /dev/null +++ b/brandedVariable/cfc114_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfc114_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfc11_tavg-u-hm-u.json b/brandedVariable/cfc11_tavg-u-hm-u.json new file mode 100644 index 00000000..d370c5ba --- /dev/null +++ b/brandedVariable/cfc11_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfc11_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cfc12_tavg-u-hm-u.json b/brandedVariable/cfc12_tavg-u-hm-u.json new file mode 100644 index 00000000..dde69742 --- /dev/null +++ b/brandedVariable/cfc12_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cfc12_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch3coch3_tavg-al-hxy-u.json b/brandedVariable/ch3coch3_tavg-al-hxy-u.json new file mode 100644 index 00000000..c60d0e0a --- /dev/null +++ b/brandedVariable/ch3coch3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch3coch3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch3oh_tavg-al-hxy-u.json b/brandedVariable/ch3oh_tavg-al-hxy-u.json new file mode 100644 index 00000000..42b1c106 --- /dev/null +++ b/brandedVariable/ch3oh_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch3oh_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tavg-al-hxy-u.json b/brandedVariable/ch4_tavg-al-hxy-u.json new file mode 100644 index 00000000..43f168a5 --- /dev/null +++ b/brandedVariable/ch4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tavg-p19-hxy-air.json b/brandedVariable/ch4_tavg-p19-hxy-air.json new file mode 100644 index 00000000..efc494ff --- /dev/null +++ b/brandedVariable/ch4_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tavg-p39-hy-air.json b/brandedVariable/ch4_tavg-p39-hy-air.json new file mode 100644 index 00000000..0eda45fa --- /dev/null +++ b/brandedVariable/ch4_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tavg-u-hm-u.json b/brandedVariable/ch4_tavg-u-hm-u.json new file mode 100644 index 00000000..e197c019 --- /dev/null +++ b/brandedVariable/ch4_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tclm-p19-hxy-air.json b/brandedVariable/ch4_tclm-p19-hxy-air.json new file mode 100644 index 00000000..d2cc7325 --- /dev/null +++ b/brandedVariable/ch4_tclm-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tclm-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4_tclm-u-hm-u.json b/brandedVariable/ch4_tclm-u-hm-u.json new file mode 100644 index 00000000..0e6964ff --- /dev/null +++ b/brandedVariable/ch4_tclm-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4_tclm-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4losssoil_tavg-u-hxy-u.json b/brandedVariable/ch4losssoil_tavg-u-hxy-u.json new file mode 100644 index 00000000..fe918a89 --- /dev/null +++ b/brandedVariable/ch4losssoil_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4losssoil_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ch4ref_ti-al-hxy-u.json b/brandedVariable/ch4ref_ti-al-hxy-u.json new file mode 100644 index 00000000..232cde61 --- /dev/null +++ b/brandedVariable/ch4ref_ti-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ch4ref_ti-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chcint_tavg-op4-hxy-sea.json b/brandedVariable/chcint_tavg-op4-hxy-sea.json new file mode 100644 index 00000000..d0aa4b0c --- /dev/null +++ b/brandedVariable/chcint_tavg-op4-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chcint_tavg-op4-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cheaqpso4_tavg-al-hxy-u.json b/brandedVariable/cheaqpso4_tavg-al-hxy-u.json new file mode 100644 index 00000000..b94678ed --- /dev/null +++ b/brandedVariable/cheaqpso4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cheaqpso4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chegph2oo1d_tavg-al-hxy-u.json b/brandedVariable/chegph2oo1d_tavg-al-hxy-u.json new file mode 100644 index 00000000..c61d8422 --- /dev/null +++ b/brandedVariable/chegph2oo1d_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chegph2oo1d_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chegpso4_tavg-al-hxy-u.json b/brandedVariable/chegpso4_tavg-al-hxy-u.json new file mode 100644 index 00000000..760b51e0 --- /dev/null +++ b/brandedVariable/chegpso4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chegpso4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chepasoa_tavg-u-hxy-u.json b/brandedVariable/chepasoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..d0290a42 --- /dev/null +++ b/brandedVariable/chepasoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chepasoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chepnh4_tavg-al-hxy-u.json b/brandedVariable/chepnh4_tavg-al-hxy-u.json new file mode 100644 index 00000000..cd8ded6f --- /dev/null +++ b/brandedVariable/chepnh4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chepnh4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chepno3_tavg-al-hxy-u.json b/brandedVariable/chepno3_tavg-al-hxy-u.json new file mode 100644 index 00000000..55b9f629 --- /dev/null +++ b/brandedVariable/chepno3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chepno3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chepsoa_tavg-u-hxy-u.json b/brandedVariable/chepsoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..2432b50f --- /dev/null +++ b/brandedVariable/chepsoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chepsoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chl_tavg-d0m-hxy-sea.json b/brandedVariable/chl_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..486b915b --- /dev/null +++ b/brandedVariable/chl_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chl_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chl_tavg-ol-hxy-sea.json b/brandedVariable/chl_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..a0c3304e --- /dev/null +++ b/brandedVariable/chl_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chl_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chl_tavg-op20bar-hxy-sea.json b/brandedVariable/chl_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..c3040529 --- /dev/null +++ b/brandedVariable/chl_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chl_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlcalc_tavg-d0m-hxy-sea.json b/brandedVariable/chlcalc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..2886e20e --- /dev/null +++ b/brandedVariable/chlcalc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlcalc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlcalc_tavg-ol-hxy-sea.json b/brandedVariable/chlcalc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..6429b37f --- /dev/null +++ b/brandedVariable/chlcalc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlcalc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chldiat_tavg-d0m-hxy-sea.json b/brandedVariable/chldiat_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..bf26e5df --- /dev/null +++ b/brandedVariable/chldiat_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chldiat_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chldiat_tavg-ol-hxy-sea.json b/brandedVariable/chldiat_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..86283760 --- /dev/null +++ b/brandedVariable/chldiat_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chldiat_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chldiaz_tavg-d0m-hxy-sea.json b/brandedVariable/chldiaz_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..b654987b --- /dev/null +++ b/brandedVariable/chldiaz_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chldiaz_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chldiaz_tavg-ol-hxy-sea.json b/brandedVariable/chldiaz_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..dee91c02 --- /dev/null +++ b/brandedVariable/chldiaz_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chldiaz_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlmisc_tavg-d0m-hxy-sea.json b/brandedVariable/chlmisc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..09aabb14 --- /dev/null +++ b/brandedVariable/chlmisc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlmisc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlmisc_tavg-ol-hxy-sea.json b/brandedVariable/chlmisc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..0b97aee6 --- /dev/null +++ b/brandedVariable/chlmisc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlmisc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlpico_tavg-d0m-hxy-sea.json b/brandedVariable/chlpico_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..503af9d6 --- /dev/null +++ b/brandedVariable/chlpico_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlpico_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/chlpico_tavg-ol-hxy-sea.json b/brandedVariable/chlpico_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..40463038 --- /dev/null +++ b/brandedVariable/chlpico_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "chlpico_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ci_tavg-u-hxy-u.json b/brandedVariable/ci_tavg-u-hxy-u.json new file mode 100644 index 00000000..34a88730 --- /dev/null +++ b/brandedVariable/ci_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ci_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ci_tpt-u-hxys-u.json b/brandedVariable/ci_tpt-u-hxys-u.json new file mode 100644 index 00000000..cb75647f --- /dev/null +++ b/brandedVariable/ci_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ci_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cl_tavg-al-hxy-u.json b/brandedVariable/cl_tavg-al-hxy-u.json new file mode 100644 index 00000000..cca28a4d --- /dev/null +++ b/brandedVariable/cl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cl_tpt-al-hxys-u.json b/brandedVariable/cl_tpt-al-hxys-u.json new file mode 100644 index 00000000..6099e498 --- /dev/null +++ b/brandedVariable/cl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clc_tavg-al-hxy-u.json b/brandedVariable/clc_tavg-al-hxy-u.json new file mode 100644 index 00000000..2946f276 --- /dev/null +++ b/brandedVariable/clc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipso_tavg-220hPa-hxy-air.json b/brandedVariable/clcalipso_tavg-220hPa-hxy-air.json new file mode 100644 index 00000000..63860781 --- /dev/null +++ b/brandedVariable/clcalipso_tavg-220hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipso_tavg-220hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipso_tavg-560hPa-hxy-air.json b/brandedVariable/clcalipso_tavg-560hPa-hxy-air.json new file mode 100644 index 00000000..e555d81c --- /dev/null +++ b/brandedVariable/clcalipso_tavg-560hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipso_tavg-560hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipso_tavg-840hPa-hxy-air.json b/brandedVariable/clcalipso_tavg-840hPa-hxy-air.json new file mode 100644 index 00000000..8fc5f970 --- /dev/null +++ b/brandedVariable/clcalipso_tavg-840hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipso_tavg-840hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipso_tavg-h40-hxy-air.json b/brandedVariable/clcalipso_tavg-h40-hxy-air.json new file mode 100644 index 00000000..d31ee0df --- /dev/null +++ b/brandedVariable/clcalipso_tavg-h40-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipso_tavg-h40-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipsoice_tavg-h40-hxy-air.json b/brandedVariable/clcalipsoice_tavg-h40-hxy-air.json new file mode 100644 index 00000000..6f99c90f --- /dev/null +++ b/brandedVariable/clcalipsoice_tavg-h40-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipsoice_tavg-h40-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clcalipsoliq_tavg-h40-hxy-air.json b/brandedVariable/clcalipsoliq_tavg-h40-hxy-air.json new file mode 100644 index 00000000..05e97a15 --- /dev/null +++ b/brandedVariable/clcalipsoliq_tavg-h40-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clcalipsoliq_tavg-h40-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cldnci_tavg-u-hxy-cl.json b/brandedVariable/cldnci_tavg-u-hxy-cl.json new file mode 100644 index 00000000..50457a8d --- /dev/null +++ b/brandedVariable/cldnci_tavg-u-hxy-cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cldnci_tavg-u-hxy-cl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cldncl_tavg-u-hxy-cl.json b/brandedVariable/cldncl_tavg-u-hxy-cl.json new file mode 100644 index 00000000..a6ba3a2f --- /dev/null +++ b/brandedVariable/cldncl_tavg-u-hxy-cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cldncl_tavg-u-hxy-cl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cldnvi_tavg-u-hxy-u.json b/brandedVariable/cldnvi_tavg-u-hxy-u.json new file mode 100644 index 00000000..1714febe --- /dev/null +++ b/brandedVariable/cldnvi_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cldnvi_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cli_tavg-al-hxy-u.json b/brandedVariable/cli_tavg-al-hxy-u.json new file mode 100644 index 00000000..b6369dc1 --- /dev/null +++ b/brandedVariable/cli_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cli_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cli_tpt-al-hxys-u.json b/brandedVariable/cli_tpt-al-hxys-u.json new file mode 100644 index 00000000..39cfe3db --- /dev/null +++ b/brandedVariable/cli_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cli_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clic_tavg-al-hxy-u.json b/brandedVariable/clic_tavg-al-hxy-u.json new file mode 100644 index 00000000..eaca2750 --- /dev/null +++ b/brandedVariable/clic_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clic_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clic_tpt-al-hxy-u.json b/brandedVariable/clic_tpt-al-hxy-u.json new file mode 100644 index 00000000..08261d0d --- /dev/null +++ b/brandedVariable/clic_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clic_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/climodis_tavg-u-hxy-u.json b/brandedVariable/climodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..5b9fa2b2 --- /dev/null +++ b/brandedVariable/climodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "climodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clis_tavg-al-hxy-u.json b/brandedVariable/clis_tavg-al-hxy-u.json new file mode 100644 index 00000000..48a91449 --- /dev/null +++ b/brandedVariable/clis_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clis_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clis_tpt-al-hxy-u.json b/brandedVariable/clis_tpt-al-hxy-u.json new file mode 100644 index 00000000..eb58c054 --- /dev/null +++ b/brandedVariable/clis_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clis_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clisccp_tavg-p7c-hxy-air.json b/brandedVariable/clisccp_tavg-p7c-hxy-air.json new file mode 100644 index 00000000..1fd79727 --- /dev/null +++ b/brandedVariable/clisccp_tavg-p7c-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clisccp_tavg-p7c-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clivi_tavg-u-hxy-u.json b/brandedVariable/clivi_tavg-u-hxy-u.json new file mode 100644 index 00000000..8cf81408 --- /dev/null +++ b/brandedVariable/clivi_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clivi_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clivi_tpt-u-hxy-u.json b/brandedVariable/clivi_tpt-u-hxy-u.json new file mode 100644 index 00000000..363dd2f0 --- /dev/null +++ b/brandedVariable/clivi_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clivi_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clivi_tpt-u-hxys-u.json b/brandedVariable/clivi_tpt-u-hxys-u.json new file mode 100644 index 00000000..ecc60646 --- /dev/null +++ b/brandedVariable/clivi_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clivi_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clivic_tavg-u-hxy-u.json b/brandedVariable/clivic_tavg-u-hxy-u.json new file mode 100644 index 00000000..689f5a92 --- /dev/null +++ b/brandedVariable/clivic_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clivic_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clivimodis_tavg-u-hxy-u.json b/brandedVariable/clivimodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..227fc155 --- /dev/null +++ b/brandedVariable/clivimodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clivimodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmisr_tavg-h16-hxy-air.json b/brandedVariable/clmisr_tavg-h16-hxy-air.json new file mode 100644 index 00000000..7000d170 --- /dev/null +++ b/brandedVariable/clmisr_tavg-h16-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmisr_tavg-h16-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmodis_tavg-p7c-hxy-air.json b/brandedVariable/clmodis_tavg-p7c-hxy-air.json new file mode 100644 index 00000000..fce35d92 --- /dev/null +++ b/brandedVariable/clmodis_tavg-p7c-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmodis_tavg-p7c-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmodisiceReff_tavg-u-hxy-u.json b/brandedVariable/clmodisiceReff_tavg-u-hxy-u.json new file mode 100644 index 00000000..e25f5013 --- /dev/null +++ b/brandedVariable/clmodisiceReff_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmodisiceReff_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmodisice_tavg-p7c-hxy-air.json b/brandedVariable/clmodisice_tavg-p7c-hxy-air.json new file mode 100644 index 00000000..de0b98c3 --- /dev/null +++ b/brandedVariable/clmodisice_tavg-p7c-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmodisice_tavg-p7c-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmodisliquidReff_tavg-u-hxy-u.json b/brandedVariable/clmodisliquidReff_tavg-u-hxy-u.json new file mode 100644 index 00000000..ce765bea --- /dev/null +++ b/brandedVariable/clmodisliquidReff_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmodisliquidReff_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clmodisliquid_tavg-p7c-hxy-air.json b/brandedVariable/clmodisliquid_tavg-p7c-hxy-air.json new file mode 100644 index 00000000..ade6c1ff --- /dev/null +++ b/brandedVariable/clmodisliquid_tavg-p7c-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clmodisliquid_tavg-p7c-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cls_tavg-al-hxy-u.json b/brandedVariable/cls_tavg-al-hxy-u.json new file mode 100644 index 00000000..ad69a484 --- /dev/null +++ b/brandedVariable/cls_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cls_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clt_tavg-u-hxy-lnd.json b/brandedVariable/clt_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8645e177 --- /dev/null +++ b/brandedVariable/clt_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clt_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clt_tavg-u-hxy-u.json b/brandedVariable/clt_tavg-u-hxy-u.json new file mode 100644 index 00000000..ff3ff4a3 --- /dev/null +++ b/brandedVariable/clt_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clt_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clt_tpt-u-hxy-u.json b/brandedVariable/clt_tpt-u-hxy-u.json new file mode 100644 index 00000000..4d91b747 --- /dev/null +++ b/brandedVariable/clt_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clt_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clt_tpt-u-hxys-u.json b/brandedVariable/clt_tpt-u-hxys-u.json new file mode 100644 index 00000000..7c1abbeb --- /dev/null +++ b/brandedVariable/clt_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clt_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cltc_tavg-u-hxy-u.json b/brandedVariable/cltc_tavg-u-hxy-u.json new file mode 100644 index 00000000..f2886f57 --- /dev/null +++ b/brandedVariable/cltc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cltc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cltcalipso_tavg-u-hxy-u.json b/brandedVariable/cltcalipso_tavg-u-hxy-u.json new file mode 100644 index 00000000..6c0fe559 --- /dev/null +++ b/brandedVariable/cltcalipso_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cltcalipso_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cltcalipso_tpt-u-hxy-u.json b/brandedVariable/cltcalipso_tpt-u-hxy-u.json new file mode 100644 index 00000000..2783421d --- /dev/null +++ b/brandedVariable/cltcalipso_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cltcalipso_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cltisccp_tavg-u-hxy-u.json b/brandedVariable/cltisccp_tavg-u-hxy-u.json new file mode 100644 index 00000000..eb7e08c9 --- /dev/null +++ b/brandedVariable/cltisccp_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cltisccp_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cltmodis_tavg-u-hxy-u.json b/brandedVariable/cltmodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..6e68557d --- /dev/null +++ b/brandedVariable/cltmodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cltmodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clw_tavg-al-hxy-u.json b/brandedVariable/clw_tavg-al-hxy-u.json new file mode 100644 index 00000000..1c4b27f3 --- /dev/null +++ b/brandedVariable/clw_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clw_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clw_tpt-al-hxys-u.json b/brandedVariable/clw_tpt-al-hxys-u.json new file mode 100644 index 00000000..2f948894 --- /dev/null +++ b/brandedVariable/clw_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clw_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwc_tavg-al-hxy-u.json b/brandedVariable/clwc_tavg-al-hxy-u.json new file mode 100644 index 00000000..b0010197 --- /dev/null +++ b/brandedVariable/clwc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwc_tpt-al-hxy-u.json b/brandedVariable/clwc_tpt-al-hxy-u.json new file mode 100644 index 00000000..2c9d0639 --- /dev/null +++ b/brandedVariable/clwc_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwc_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwmodis_tavg-u-hxy-u.json b/brandedVariable/clwmodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..cfd1b1c8 --- /dev/null +++ b/brandedVariable/clwmodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwmodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clws_tavg-al-hxy-u.json b/brandedVariable/clws_tavg-al-hxy-u.json new file mode 100644 index 00000000..07a91be7 --- /dev/null +++ b/brandedVariable/clws_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clws_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clws_tpt-al-hxy-u.json b/brandedVariable/clws_tpt-al-hxy-u.json new file mode 100644 index 00000000..17e414ff --- /dev/null +++ b/brandedVariable/clws_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clws_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwvi_tavg-u-hxy-u.json b/brandedVariable/clwvi_tavg-u-hxy-u.json new file mode 100644 index 00000000..c8e9dc0c --- /dev/null +++ b/brandedVariable/clwvi_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwvi_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwvi_tpt-u-hxy-u.json b/brandedVariable/clwvi_tpt-u-hxy-u.json new file mode 100644 index 00000000..d1087f4f --- /dev/null +++ b/brandedVariable/clwvi_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwvi_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwvi_tpt-u-hxys-u.json b/brandedVariable/clwvi_tpt-u-hxys-u.json new file mode 100644 index 00000000..b1faf599 --- /dev/null +++ b/brandedVariable/clwvi_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwvi_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwvic_tavg-u-hxy-u.json b/brandedVariable/clwvic_tavg-u-hxy-u.json new file mode 100644 index 00000000..ba92cee6 --- /dev/null +++ b/brandedVariable/clwvic_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwvic_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/clwvimodis_tavg-u-hxy-u.json b/brandedVariable/clwvimodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..77bbde60 --- /dev/null +++ b/brandedVariable/clwvimodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "clwvimodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cly_tavg-p39-hy-air.json b/brandedVariable/cly_tavg-p39-hy-air.json new file mode 100644 index 00000000..738309c0 --- /dev/null +++ b/brandedVariable/cly_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cly_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cnc_tavg-u-hxy-u.json b/brandedVariable/cnc_tavg-u-hxy-u.json new file mode 100644 index 00000000..72ff34b9 --- /dev/null +++ b/brandedVariable/cnc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cnc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co23D_tavg-al-hxy-u.json b/brandedVariable/co23D_tavg-al-hxy-u.json new file mode 100644 index 00000000..4aff09fd --- /dev/null +++ b/brandedVariable/co23D_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co23D_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2_tavg-al-hxy-u.json b/brandedVariable/co2_tavg-al-hxy-u.json new file mode 100644 index 00000000..86cfa07a --- /dev/null +++ b/brandedVariable/co2_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2_tavg-h2m-hxy-u.json b/brandedVariable/co2_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..5dac2362 --- /dev/null +++ b/brandedVariable/co2_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2_tavg-p19-hxy-air.json b/brandedVariable/co2_tavg-p19-hxy-air.json new file mode 100644 index 00000000..426ec6c8 --- /dev/null +++ b/brandedVariable/co2_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2_tclm-p19-hxy-air.json b/brandedVariable/co2_tclm-p19-hxy-air.json new file mode 100644 index 00000000..b075ce2f --- /dev/null +++ b/brandedVariable/co2_tclm-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2_tclm-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2_tclm-u-hm-u.json b/brandedVariable/co2_tclm-u-hm-u.json new file mode 100644 index 00000000..0c4175df --- /dev/null +++ b/brandedVariable/co2_tclm-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2_tclm-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co2mass_tavg-u-hm-u.json b/brandedVariable/co2mass_tavg-u-hm-u.json new file mode 100644 index 00000000..f776f61a --- /dev/null +++ b/brandedVariable/co2mass_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co2mass_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co3_tavg-d0m-hxy-sea.json b/brandedVariable/co3_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..3b51cd33 --- /dev/null +++ b/brandedVariable/co3_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co3_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co3_tavg-op20bar-hxy-sea.json b/brandedVariable/co3_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..53dea3bc --- /dev/null +++ b/brandedVariable/co3_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co3_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co3satarag_tavg-d0m-hxy-sea.json b/brandedVariable/co3satarag_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..191569e2 --- /dev/null +++ b/brandedVariable/co3satarag_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co3satarag_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co3satarag_tavg-op20bar-hxy-sea.json b/brandedVariable/co3satarag_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..4003445a --- /dev/null +++ b/brandedVariable/co3satarag_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co3satarag_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co_tavg-al-hxy-u.json b/brandedVariable/co_tavg-al-hxy-u.json new file mode 100644 index 00000000..17a7f731 --- /dev/null +++ b/brandedVariable/co_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/co_tavg-h2m-hxy-u.json b/brandedVariable/co_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..560671e8 --- /dev/null +++ b/brandedVariable/co_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "co_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cod_tavg-u-hxy-u.json b/brandedVariable/cod_tavg-u-hxy-u.json new file mode 100644 index 00000000..45558630 --- /dev/null +++ b/brandedVariable/cod_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cod_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/conccn_tavg-al-hxy-u.json b/brandedVariable/conccn_tavg-al-hxy-u.json new file mode 100644 index 00000000..9d15b7fb --- /dev/null +++ b/brandedVariable/conccn_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "conccn_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/conccn_tpt-u-hxys-u.json b/brandedVariable/conccn_tpt-u-hxys-u.json new file mode 100644 index 00000000..16fc8ee2 --- /dev/null +++ b/brandedVariable/conccn_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "conccn_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cropFracC3_tavg-u-hxy-u.json b/brandedVariable/cropFracC3_tavg-u-hxy-u.json new file mode 100644 index 00000000..6251459e --- /dev/null +++ b/brandedVariable/cropFracC3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cropFracC3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cropFracC4_tavg-u-hxy-u.json b/brandedVariable/cropFracC4_tavg-u-hxy-u.json new file mode 100644 index 00000000..8e6c1f80 --- /dev/null +++ b/brandedVariable/cropFracC4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cropFracC4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/cropFrac_tavg-u-hxy-u.json b/brandedVariable/cropFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..47c5e6dc --- /dev/null +++ b/brandedVariable/cropFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cropFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dcw_tavg-u-hxy-lnd.json b/brandedVariable/dcw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e180a1dd --- /dev/null +++ b/brandedVariable/dcw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dcw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/depdust_tavg-u-hxy-u.json b/brandedVariable/depdust_tavg-u-hxy-u.json new file mode 100644 index 00000000..9ca2280e --- /dev/null +++ b/brandedVariable/depdust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "depdust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/depthl_ti-u-hxy-u.json b/brandedVariable/depthl_ti-u-hxy-u.json new file mode 100644 index 00000000..8bd9b4e1 --- /dev/null +++ b/brandedVariable/depthl_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "depthl_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/deptho_ti-u-hxy-sea.json b/brandedVariable/deptho_ti-u-hxy-sea.json new file mode 100644 index 00000000..dda73095 --- /dev/null +++ b/brandedVariable/deptho_ti-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "deptho_ti-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/depthsl_ti-u-hxy-u.json b/brandedVariable/depthsl_ti-u-hxy-u.json new file mode 100644 index 00000000..3324d7cd --- /dev/null +++ b/brandedVariable/depthsl_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "depthsl_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/detoc_tavg-ol-hxy-sea.json b/brandedVariable/detoc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..4652f020 --- /dev/null +++ b/brandedVariable/detoc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "detoc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dfe_tavg-d0m-hxy-sea.json b/brandedVariable/dfe_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..e51e135e --- /dev/null +++ b/brandedVariable/dfe_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dfe_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dfe_tavg-ol-hxy-sea.json b/brandedVariable/dfe_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..96ac74be --- /dev/null +++ b/brandedVariable/dfe_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dfe_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dgw_tavg-u-hxy-lnd.json b/brandedVariable/dgw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..be6016ac --- /dev/null +++ b/brandedVariable/dgw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dgw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/difmxybo_tavg-ol-hxy-sea.json b/brandedVariable/difmxybo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..13e03347 --- /dev/null +++ b/brandedVariable/difmxybo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "difmxybo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/difmxylo_tavg-ol-hxy-sea.json b/brandedVariable/difmxylo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..2cf16a4c --- /dev/null +++ b/brandedVariable/difmxylo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "difmxylo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/diftrblo_tavg-ol-hxy-sea.json b/brandedVariable/diftrblo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..a5eaae83 --- /dev/null +++ b/brandedVariable/diftrblo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "diftrblo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/diftrelo_tavg-ol-hxy-sea.json b/brandedVariable/diftrelo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d47fb919 --- /dev/null +++ b/brandedVariable/diftrelo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "diftrelo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/difvho_tavg-ol-hxy-sea.json b/brandedVariable/difvho_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d72108f3 --- /dev/null +++ b/brandedVariable/difvho_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "difvho_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/difvso_tavg-ol-hxy-sea.json b/brandedVariable/difvso_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d641a2a9 --- /dev/null +++ b/brandedVariable/difvso_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "difvso_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dispkexyfo_tavg-u-hxy-sea.json b/brandedVariable/dispkexyfo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..00753774 --- /dev/null +++ b/brandedVariable/dispkexyfo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dispkexyfo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissi13c_tavg-d0m-hxy-sea.json b/brandedVariable/dissi13c_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..3ecb094e --- /dev/null +++ b/brandedVariable/dissi13c_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissi13c_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissi13c_tavg-ol-hxy-sea.json b/brandedVariable/dissi13c_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..3a63c4be --- /dev/null +++ b/brandedVariable/dissi13c_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissi13c_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissi14c_tavg-ol-hxy-sea.json b/brandedVariable/dissi14c_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..3490fba0 --- /dev/null +++ b/brandedVariable/dissi14c_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissi14c_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissi14cabio_tavg-d0m-hxy-sea.json b/brandedVariable/dissi14cabio_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..00ddef12 --- /dev/null +++ b/brandedVariable/dissi14cabio_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissi14cabio_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissi14cabio_tavg-ol-hxy-sea.json b/brandedVariable/dissi14cabio_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..06b322ac --- /dev/null +++ b/brandedVariable/dissi14cabio_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissi14cabio_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissic_tavg-d0m-hxy-sea.json b/brandedVariable/dissic_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..8c5cedfe --- /dev/null +++ b/brandedVariable/dissic_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissic_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissic_tavg-ol-hxy-sea.json b/brandedVariable/dissic_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..60a94548 --- /dev/null +++ b/brandedVariable/dissic_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissic_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dissoc_tavg-ol-hxy-sea.json b/brandedVariable/dissoc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..5d94e9d8 --- /dev/null +++ b/brandedVariable/dissoc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dissoc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dmc_tavg-alh-hxy-u.json b/brandedVariable/dmc_tavg-alh-hxy-u.json new file mode 100644 index 00000000..e6c8eac6 --- /dev/null +++ b/brandedVariable/dmc_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dmc_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dms_tavg-al-hxy-u.json b/brandedVariable/dms_tavg-al-hxy-u.json new file mode 100644 index 00000000..ab2d8501 --- /dev/null +++ b/brandedVariable/dms_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dms_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dmso_tavg-d0m-hxy-sea.json b/brandedVariable/dmso_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..fbcac461 --- /dev/null +++ b/brandedVariable/dmso_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dmso_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dmso_tavg-ol-hxy-sea.json b/brandedVariable/dmso_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..2e0fc89b --- /dev/null +++ b/brandedVariable/dmso_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dmso_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/do3chm_tavg-al-hxy-u.json b/brandedVariable/do3chm_tavg-al-hxy-u.json new file mode 100644 index 00000000..211c67c6 --- /dev/null +++ b/brandedVariable/do3chm_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "do3chm_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dpco2_tavg-u-hxy-sea.json b/brandedVariable/dpco2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..6f1b3979 --- /dev/null +++ b/brandedVariable/dpco2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dpco2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dpo2_tavg-u-hxy-sea.json b/brandedVariable/dpo2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..aaad0051 --- /dev/null +++ b/brandedVariable/dpo2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dpo2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drivw_tavg-u-hxy-lnd.json b/brandedVariable/drivw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..0ab4f8e0 --- /dev/null +++ b/brandedVariable/drivw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drivw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drybc_tavg-u-hxy-u.json b/brandedVariable/drybc_tavg-u-hxy-u.json new file mode 100644 index 00000000..e1444fd2 --- /dev/null +++ b/brandedVariable/drybc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drybc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drydust_tavg-u-hxy-u.json b/brandedVariable/drydust_tavg-u-hxy-u.json new file mode 100644 index 00000000..5203e428 --- /dev/null +++ b/brandedVariable/drydust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drydust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryh2_tavg-u-hxy-u.json b/brandedVariable/dryh2_tavg-u-hxy-u.json new file mode 100644 index 00000000..ca7978e0 --- /dev/null +++ b/brandedVariable/dryh2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryh2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryhno3_tavg-u-hxy-u.json b/brandedVariable/dryhno3_tavg-u-hxy-u.json new file mode 100644 index 00000000..b6a3384c --- /dev/null +++ b/brandedVariable/dryhno3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryhno3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drynh3_tavg-u-hxy-u.json b/brandedVariable/drynh3_tavg-u-hxy-u.json new file mode 100644 index 00000000..e6234cf2 --- /dev/null +++ b/brandedVariable/drynh3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drynh3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drynh4_tavg-u-hxy-u.json b/brandedVariable/drynh4_tavg-u-hxy-u.json new file mode 100644 index 00000000..884fced6 --- /dev/null +++ b/brandedVariable/drynh4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drynh4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryno3_tavg-u-hxy-u.json b/brandedVariable/dryno3_tavg-u-hxy-u.json new file mode 100644 index 00000000..3bac1f15 --- /dev/null +++ b/brandedVariable/dryno3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryno3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/drynoy_tavg-u-hxy-u.json b/brandedVariable/drynoy_tavg-u-hxy-u.json new file mode 100644 index 00000000..93b9c295 --- /dev/null +++ b/brandedVariable/drynoy_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "drynoy_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryo3_tavg-u-hxy-u.json b/brandedVariable/dryo3_tavg-u-hxy-u.json new file mode 100644 index 00000000..6918c002 --- /dev/null +++ b/brandedVariable/dryo3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryo3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryoa_tavg-u-hxy-u.json b/brandedVariable/dryoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..a22dd7d9 --- /dev/null +++ b/brandedVariable/dryoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryso2_tavg-u-hxy-u.json b/brandedVariable/dryso2_tavg-u-hxy-u.json new file mode 100644 index 00000000..8489c27a --- /dev/null +++ b/brandedVariable/dryso2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryso2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryso4_tavg-u-hxy-u.json b/brandedVariable/dryso4_tavg-u-hxy-u.json new file mode 100644 index 00000000..2442f867 --- /dev/null +++ b/brandedVariable/dryso4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryso4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dryss_tavg-u-hxy-u.json b/brandedVariable/dryss_tavg-u-hxy-u.json new file mode 100644 index 00000000..8817c318 --- /dev/null +++ b/brandedVariable/dryss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dryss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dslw_tavg-u-hxy-lnd.json b/brandedVariable/dslw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..efeb0fcc --- /dev/null +++ b/brandedVariable/dslw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dslw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dsn_tavg-u-hxy-lnd.json b/brandedVariable/dsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..fc2b7463 --- /dev/null +++ b/brandedVariable/dsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dsw_tavg-u-hxy-lnd.json b/brandedVariable/dsw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..a1bbd4eb --- /dev/null +++ b/brandedVariable/dsw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dsw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dtauc_tpt-al-hxy-ccl.json b/brandedVariable/dtauc_tpt-al-hxy-ccl.json new file mode 100644 index 00000000..cf415a76 --- /dev/null +++ b/brandedVariable/dtauc_tpt-al-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dtauc_tpt-al-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dtaus_tpt-al-hxy-scl.json b/brandedVariable/dtaus_tpt-al-hxy-scl.json new file mode 100644 index 00000000..fa35945d --- /dev/null +++ b/brandedVariable/dtaus_tpt-al-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dtaus_tpt-al-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dxto_ti-u-hxy-u.json b/brandedVariable/dxto_ti-u-hxy-u.json new file mode 100644 index 00000000..bab23acb --- /dev/null +++ b/brandedVariable/dxto_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dxto_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dxuo_ti-u-hxy-u.json b/brandedVariable/dxuo_ti-u-hxy-u.json new file mode 100644 index 00000000..5226e2af --- /dev/null +++ b/brandedVariable/dxuo_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dxuo_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dxvo_ti-u-hxy-u.json b/brandedVariable/dxvo_ti-u-hxy-u.json new file mode 100644 index 00000000..40d9d9fc --- /dev/null +++ b/brandedVariable/dxvo_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dxvo_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dyto_ti-u-hxy-u.json b/brandedVariable/dyto_ti-u-hxy-u.json new file mode 100644 index 00000000..9cadee8f --- /dev/null +++ b/brandedVariable/dyto_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dyto_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dyuo_ti-u-hxy-u.json b/brandedVariable/dyuo_ti-u-hxy-u.json new file mode 100644 index 00000000..5da09adc --- /dev/null +++ b/brandedVariable/dyuo_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dyuo_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/dyvo_ti-u-hxy-u.json b/brandedVariable/dyvo_ti-u-hxy-u.json new file mode 100644 index 00000000..79ace6dd --- /dev/null +++ b/brandedVariable/dyvo_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dyvo_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/e90inst_tpt-al-hxy-u.json b/brandedVariable/e90inst_tpt-al-hxy-u.json new file mode 100644 index 00000000..e7557d22 --- /dev/null +++ b/brandedVariable/e90inst_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "e90inst_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ec550aer_tavg-al-hxy-u.json b/brandedVariable/ec550aer_tavg-al-hxy-u.json new file mode 100644 index 00000000..3a570a92 --- /dev/null +++ b/brandedVariable/ec550aer_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ec550aer_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ec550aer_tpt-u-hxy-u.json b/brandedVariable/ec550aer_tpt-u-hxy-u.json new file mode 100644 index 00000000..d2fe4ea8 --- /dev/null +++ b/brandedVariable/ec550aer_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ec550aer_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/edt_tavg-al-hxy-u.json b/brandedVariable/edt_tavg-al-hxy-u.json new file mode 100644 index 00000000..b8233169 --- /dev/null +++ b/brandedVariable/edt_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "edt_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/edt_tpt-al-hxys-u.json b/brandedVariable/edt_tpt-al-hxys-u.json new file mode 100644 index 00000000..c16842ca --- /dev/null +++ b/brandedVariable/edt_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "edt_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiach4_tavg-u-hxy-u.json b/brandedVariable/emiach4_tavg-u-hxy-u.json new file mode 100644 index 00000000..eda73a38 --- /dev/null +++ b/brandedVariable/emiach4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiach4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiaco_tavg-u-hxy-u.json b/brandedVariable/emiaco_tavg-u-hxy-u.json new file mode 100644 index 00000000..80ffb9c0 --- /dev/null +++ b/brandedVariable/emiaco_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiaco_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emianox_tavg-u-hxy-u.json b/brandedVariable/emianox_tavg-u-hxy-u.json new file mode 100644 index 00000000..c57baa33 --- /dev/null +++ b/brandedVariable/emianox_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emianox_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiaoa_tavg-u-hxy-u.json b/brandedVariable/emiaoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..ee452633 --- /dev/null +++ b/brandedVariable/emiaoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiaoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiavnox_tavg-al-hxy-u.json b/brandedVariable/emiavnox_tavg-al-hxy-u.json new file mode 100644 index 00000000..e9d561a6 --- /dev/null +++ b/brandedVariable/emiavnox_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiavnox_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbbc_tavg-u-hxy-u.json b/brandedVariable/emibbbc_tavg-u-hxy-u.json new file mode 100644 index 00000000..c82da3f3 --- /dev/null +++ b/brandedVariable/emibbbc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbbc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbch4_tavg-u-hxy-u.json b/brandedVariable/emibbch4_tavg-u-hxy-u.json new file mode 100644 index 00000000..de1191e1 --- /dev/null +++ b/brandedVariable/emibbch4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbch4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbco_tavg-u-hxy-u.json b/brandedVariable/emibbco_tavg-u-hxy-u.json new file mode 100644 index 00000000..fc755cec --- /dev/null +++ b/brandedVariable/emibbco_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbco_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbdms_tavg-u-hxy-u.json b/brandedVariable/emibbdms_tavg-u-hxy-u.json new file mode 100644 index 00000000..7a64123e --- /dev/null +++ b/brandedVariable/emibbdms_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbdms_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbnh3_tavg-u-hxy-u.json b/brandedVariable/emibbnh3_tavg-u-hxy-u.json new file mode 100644 index 00000000..33811b19 --- /dev/null +++ b/brandedVariable/emibbnh3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbnh3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbnox_tavg-u-hxy-u.json b/brandedVariable/emibbnox_tavg-u-hxy-u.json new file mode 100644 index 00000000..eb93081f --- /dev/null +++ b/brandedVariable/emibbnox_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbnox_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibboa_tavg-u-hxy-u.json b/brandedVariable/emibboa_tavg-u-hxy-u.json new file mode 100644 index 00000000..893c9071 --- /dev/null +++ b/brandedVariable/emibboa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibboa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbso2_tavg-u-hxy-u.json b/brandedVariable/emibbso2_tavg-u-hxy-u.json new file mode 100644 index 00000000..20db4062 --- /dev/null +++ b/brandedVariable/emibbso2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbso2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibbvoc_tavg-u-hxy-u.json b/brandedVariable/emibbvoc_tavg-u-hxy-u.json new file mode 100644 index 00000000..c20706a4 --- /dev/null +++ b/brandedVariable/emibbvoc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibbvoc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibc_tavg-u-hxy-u.json b/brandedVariable/emibc_tavg-u-hxy-u.json new file mode 100644 index 00000000..3e1c8e22 --- /dev/null +++ b/brandedVariable/emibc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emibvoc_tavg-u-hxy-u.json b/brandedVariable/emibvoc_tavg-u-hxy-u.json new file mode 100644 index 00000000..dab2b396 --- /dev/null +++ b/brandedVariable/emibvoc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emibvoc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic2h4_tavg-u-hxy-u.json b/brandedVariable/emic2h4_tavg-u-hxy-u.json new file mode 100644 index 00000000..918d0b65 --- /dev/null +++ b/brandedVariable/emic2h4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic2h4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic2h5oh_tavg-u-hxy-u.json b/brandedVariable/emic2h5oh_tavg-u-hxy-u.json new file mode 100644 index 00000000..9c502744 --- /dev/null +++ b/brandedVariable/emic2h5oh_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic2h5oh_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic2h6_tavg-u-hxy-u.json b/brandedVariable/emic2h6_tavg-u-hxy-u.json new file mode 100644 index 00000000..620c3464 --- /dev/null +++ b/brandedVariable/emic2h6_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic2h6_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic3h6_tavg-u-hxy-u.json b/brandedVariable/emic3h6_tavg-u-hxy-u.json new file mode 100644 index 00000000..c404119d --- /dev/null +++ b/brandedVariable/emic3h6_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic3h6_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic3h8_tavg-u-hxy-u.json b/brandedVariable/emic3h8_tavg-u-hxy-u.json new file mode 100644 index 00000000..4eddaa3b --- /dev/null +++ b/brandedVariable/emic3h8_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic3h8_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emic4h10_tavg-u-hxy-u.json b/brandedVariable/emic4h10_tavg-u-hxy-u.json new file mode 100644 index 00000000..65a11953 --- /dev/null +++ b/brandedVariable/emic4h10_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emic4h10_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emich3oh_tavg-u-hxy-u.json b/brandedVariable/emich3oh_tavg-u-hxy-u.json new file mode 100644 index 00000000..980f7683 --- /dev/null +++ b/brandedVariable/emich3oh_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emich3oh_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emich4_tavg-u-hxy-u.json b/brandedVariable/emich4_tavg-u-hxy-u.json new file mode 100644 index 00000000..74c24c00 --- /dev/null +++ b/brandedVariable/emich4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emich4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emico_tavg-u-hxy-u.json b/brandedVariable/emico_tavg-u-hxy-u.json new file mode 100644 index 00000000..ee554824 --- /dev/null +++ b/brandedVariable/emico_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emico_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emidms_tavg-u-hxy-u.json b/brandedVariable/emidms_tavg-u-hxy-u.json new file mode 100644 index 00000000..6268e1f5 --- /dev/null +++ b/brandedVariable/emidms_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emidms_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emidust_tavg-u-hxy-u.json b/brandedVariable/emidust_tavg-u-hxy-u.json new file mode 100644 index 00000000..54766a1c --- /dev/null +++ b/brandedVariable/emidust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emidust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emih2_tavg-u-hxy-u.json b/brandedVariable/emih2_tavg-u-hxy-u.json new file mode 100644 index 00000000..d18a9126 --- /dev/null +++ b/brandedVariable/emih2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emih2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiisop_tavg-u-hxy-u.json b/brandedVariable/emiisop_tavg-u-hxy-u.json new file mode 100644 index 00000000..bb897ece --- /dev/null +++ b/brandedVariable/emiisop_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiisop_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emilkch4_tavg-u-hxy-u.json b/brandedVariable/emilkch4_tavg-u-hxy-u.json new file mode 100644 index 00000000..45c3079f --- /dev/null +++ b/brandedVariable/emilkch4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emilkch4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emilnox_tavg-al-hxy-u.json b/brandedVariable/emilnox_tavg-al-hxy-u.json new file mode 100644 index 00000000..290aa0ce --- /dev/null +++ b/brandedVariable/emilnox_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emilnox_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/eminh3_tavg-u-hxy-u.json b/brandedVariable/eminh3_tavg-u-hxy-u.json new file mode 100644 index 00000000..d1dc4dc0 --- /dev/null +++ b/brandedVariable/eminh3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "eminh3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/eminox_tavg-u-hxy-u.json b/brandedVariable/eminox_tavg-u-hxy-u.json new file mode 100644 index 00000000..e99ccbc0 --- /dev/null +++ b/brandedVariable/eminox_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "eminox_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emioa_tavg-u-hxy-u.json b/brandedVariable/emioa_tavg-u-hxy-u.json new file mode 100644 index 00000000..3018bf18 --- /dev/null +++ b/brandedVariable/emioa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emioa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiso2_tavg-u-hxy-u.json b/brandedVariable/emiso2_tavg-u-hxy-u.json new file mode 100644 index 00000000..6745f759 --- /dev/null +++ b/brandedVariable/emiso2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiso2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiso4_tavg-u-hxy-u.json b/brandedVariable/emiso4_tavg-u-hxy-u.json new file mode 100644 index 00000000..7c457719 --- /dev/null +++ b/brandedVariable/emiso4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiso4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emiss_tavg-u-hxy-u.json b/brandedVariable/emiss_tavg-u-hxy-u.json new file mode 100644 index 00000000..37aff477 --- /dev/null +++ b/brandedVariable/emiss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emiss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/emivoc_tavg-u-hxy-u.json b/brandedVariable/emivoc_tavg-u-hxy-u.json new file mode 100644 index 00000000..cd06756c --- /dev/null +++ b/brandedVariable/emivoc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "emivoc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/epfy_tavg-p39-hy-air.json b/brandedVariable/epfy_tavg-p39-hy-air.json new file mode 100644 index 00000000..472772b1 --- /dev/null +++ b/brandedVariable/epfy_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "epfy_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/epfz_tavg-p39-hy-air.json b/brandedVariable/epfz_tavg-p39-hy-air.json new file mode 100644 index 00000000..21bfbd40 --- /dev/null +++ b/brandedVariable/epfz_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "epfz_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/epn_tavg-d100m-hxy-sea.json b/brandedVariable/epn_tavg-d100m-hxy-sea.json new file mode 100644 index 00000000..486e982e --- /dev/null +++ b/brandedVariable/epn_tavg-d100m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "epn_tavg-d100m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/epp_tavg-d100m-hxy-sea.json b/brandedVariable/epp_tavg-d100m-hxy-sea.json new file mode 100644 index 00000000..a728ac5e --- /dev/null +++ b/brandedVariable/epp_tavg-d100m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "epp_tavg-d100m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/epsi_tavg-d100m-hxy-sea.json b/brandedVariable/epsi_tavg-d100m-hxy-sea.json new file mode 100644 index 00000000..d1d54e0c --- /dev/null +++ b/brandedVariable/epsi_tavg-d100m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "epsi_tavg-d100m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/esn_tavg-u-hxy-sn.json b/brandedVariable/esn_tavg-u-hxy-sn.json new file mode 100644 index 00000000..d528f031 --- /dev/null +++ b/brandedVariable/esn_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "esn_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsbl_tavg-u-hxy-ifs.json b/brandedVariable/evspsbl_tavg-u-hxy-ifs.json new file mode 100644 index 00000000..5b225e1e --- /dev/null +++ b/brandedVariable/evspsbl_tavg-u-hxy-ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsbl_tavg-u-hxy-ifs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsbl_tavg-u-hxy-lnd.json b/brandedVariable/evspsbl_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..1b773822 --- /dev/null +++ b/brandedVariable/evspsbl_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsbl_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsbl_tavg-u-hxy-si.json b/brandedVariable/evspsbl_tavg-u-hxy-si.json new file mode 100644 index 00000000..a916b3cc --- /dev/null +++ b/brandedVariable/evspsbl_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsbl_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsbl_tavg-u-hxy-u.json b/brandedVariable/evspsbl_tavg-u-hxy-u.json new file mode 100644 index 00000000..205de627 --- /dev/null +++ b/brandedVariable/evspsbl_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsbl_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsbl_tpt-u-hxys-u.json b/brandedVariable/evspsbl_tpt-u-hxys-u.json new file mode 100644 index 00000000..14dfa1b2 --- /dev/null +++ b/brandedVariable/evspsbl_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsbl_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsblpot_tavg-u-hxy-lnd.json b/brandedVariable/evspsblpot_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..d9bd0a06 --- /dev/null +++ b/brandedVariable/evspsblpot_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsblpot_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsblsoi_tavg-u-hxy-lnd.json b/brandedVariable/evspsblsoi_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..62650f87 --- /dev/null +++ b/brandedVariable/evspsblsoi_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsblsoi_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsblsoi_tavg-u-hxy-u.json b/brandedVariable/evspsblsoi_tavg-u-hxy-u.json new file mode 100644 index 00000000..6453244c --- /dev/null +++ b/brandedVariable/evspsblsoi_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsblsoi_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsblveg_tavg-u-hxy-lnd.json b/brandedVariable/evspsblveg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..965216b3 --- /dev/null +++ b/brandedVariable/evspsblveg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsblveg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evspsblveg_tavg-u-hxy-u.json b/brandedVariable/evspsblveg_tavg-u-hxy-u.json new file mode 100644 index 00000000..04f592ce --- /dev/null +++ b/brandedVariable/evspsblveg_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evspsblveg_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evu_tavg-al-hxy-u.json b/brandedVariable/evu_tavg-al-hxy-u.json new file mode 100644 index 00000000..b18894c3 --- /dev/null +++ b/brandedVariable/evu_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evu_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/evu_tpt-al-hxys-u.json b/brandedVariable/evu_tpt-al-hxys-u.json new file mode 100644 index 00000000..0234b045 --- /dev/null +++ b/brandedVariable/evu_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "evu_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/exparagob_tavg-u-hxy-sea.json b/brandedVariable/exparagob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..54fe71d7 --- /dev/null +++ b/brandedVariable/exparagob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "exparagob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expc_tavg-d1000m-hxy-sea.json b/brandedVariable/expc_tavg-d1000m-hxy-sea.json new file mode 100644 index 00000000..5ce7480f --- /dev/null +++ b/brandedVariable/expc_tavg-d1000m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expc_tavg-d1000m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expc_tavg-d100m-hxy-sea.json b/brandedVariable/expc_tavg-d100m-hxy-sea.json new file mode 100644 index 00000000..41a38489 --- /dev/null +++ b/brandedVariable/expc_tavg-d100m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expc_tavg-d100m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expc_tavg-ol-hxy-sea.json b/brandedVariable/expc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..3ec4ade0 --- /dev/null +++ b/brandedVariable/expc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expcalc_tavg-d1000m-hxy-sea.json b/brandedVariable/expcalc_tavg-d1000m-hxy-sea.json new file mode 100644 index 00000000..077272fe --- /dev/null +++ b/brandedVariable/expcalc_tavg-d1000m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expcalc_tavg-d1000m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expcalc_tavg-d100m-hxy-sea.json b/brandedVariable/expcalc_tavg-d100m-hxy-sea.json new file mode 100644 index 00000000..0526c6b1 --- /dev/null +++ b/brandedVariable/expcalc_tavg-d100m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expcalc_tavg-d100m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expcalc_tavg-ol-hxy-sea.json b/brandedVariable/expcalc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..047f54b8 --- /dev/null +++ b/brandedVariable/expcalc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expcalc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expcalcob_tavg-u-hxy-sea.json b/brandedVariable/expcalcob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..da9b76e2 --- /dev/null +++ b/brandedVariable/expcalcob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expcalcob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expcob_tavg-u-hxy-sea.json b/brandedVariable/expcob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..812ac60f --- /dev/null +++ b/brandedVariable/expcob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expcob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expfeob_tavg-u-hxy-sea.json b/brandedVariable/expfeob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..9720a035 --- /dev/null +++ b/brandedVariable/expfeob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expfeob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expnob_tavg-u-hxy-sea.json b/brandedVariable/expnob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..bea4d314 --- /dev/null +++ b/brandedVariable/expnob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expnob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/exppob_tavg-u-hxy-sea.json b/brandedVariable/exppob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3cb5f6a9 --- /dev/null +++ b/brandedVariable/exppob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "exppob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/expsiob_tavg-u-hxy-sea.json b/brandedVariable/expsiob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2d43d4e9 --- /dev/null +++ b/brandedVariable/expsiob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "expsiob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fAnthDisturb_tavg-u-hxy-lnd.json b/brandedVariable/fAnthDisturb_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..99a89668 --- /dev/null +++ b/brandedVariable/fAnthDisturb_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fAnthDisturb_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fBNF_tavg-u-hxy-lnd.json b/brandedVariable/fBNF_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..12b0a4b2 --- /dev/null +++ b/brandedVariable/fBNF_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fBNF_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fCLandToOcean_tavg-u-hxy-lnd.json b/brandedVariable/fCLandToOcean_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..87351d37 --- /dev/null +++ b/brandedVariable/fCLandToOcean_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fCLandToOcean_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fDeforestToAtmos_tavg-u-hxy-lnd.json b/brandedVariable/fDeforestToAtmos_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..379c53fc --- /dev/null +++ b/brandedVariable/fDeforestToAtmos_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fDeforestToAtmos_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fDeforestToProduct_tavg-u-hxy-lnd.json b/brandedVariable/fDeforestToProduct_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..11783252 --- /dev/null +++ b/brandedVariable/fDeforestToProduct_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fDeforestToProduct_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fFireAll_tavg-u-hxy-lnd.json b/brandedVariable/fFireAll_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..bd9a7300 --- /dev/null +++ b/brandedVariable/fFireAll_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fFireAll_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fFireNat_tavg-u-hxy-lnd.json b/brandedVariable/fFireNat_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..29568ffb --- /dev/null +++ b/brandedVariable/fFireNat_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fFireNat_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fFire_tavg-u-hxy-lnd.json b/brandedVariable/fFire_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..026be199 --- /dev/null +++ b/brandedVariable/fFire_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fFire_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fHarvestToAtmos_tavg-u-hxy-lnd.json b/brandedVariable/fHarvestToAtmos_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c751551f --- /dev/null +++ b/brandedVariable/fHarvestToAtmos_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fHarvestToAtmos_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fHarvestToGeologicStorage_tavg-u-hxy-lnd.json b/brandedVariable/fHarvestToGeologicStorage_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b6ff89d8 --- /dev/null +++ b/brandedVariable/fHarvestToGeologicStorage_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fHarvestToGeologicStorage_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fHarvestToProduct_tavg-u-hxy-lnd.json b/brandedVariable/fHarvestToProduct_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..695484a5 --- /dev/null +++ b/brandedVariable/fHarvestToProduct_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fHarvestToProduct_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fLitterFire_tavg-u-hxy-lnd.json b/brandedVariable/fLitterFire_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cbcca708 --- /dev/null +++ b/brandedVariable/fLitterFire_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fLitterFire_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fLitterSoil_tavg-u-hxy-lnd.json b/brandedVariable/fLitterSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b6e05067 --- /dev/null +++ b/brandedVariable/fLitterSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fLitterSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fLuc_tavg-u-hxy-lnd.json b/brandedVariable/fLuc_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..54748625 --- /dev/null +++ b/brandedVariable/fLuc_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fLuc_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fLulccAtmLut_tavg-u-hxy-multi.json b/brandedVariable/fLulccAtmLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..b33e60c4 --- /dev/null +++ b/brandedVariable/fLulccAtmLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fLulccAtmLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fN2O_tavg-u-hxy-lnd.json b/brandedVariable/fN2O_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..99192b26 --- /dev/null +++ b/brandedVariable/fN2O_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fN2O_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNAnthDisturb_tavg-u-hxy-lnd.json b/brandedVariable/fNAnthDisturb_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b57c4aac --- /dev/null +++ b/brandedVariable/fNAnthDisturb_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNAnthDisturb_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNLandToOcean_tavg-u-hxy-lnd.json b/brandedVariable/fNLandToOcean_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2eb2f853 --- /dev/null +++ b/brandedVariable/fNLandToOcean_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNLandToOcean_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNLitterSoil_tavg-u-hxy-lnd.json b/brandedVariable/fNLitterSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f67b0043 --- /dev/null +++ b/brandedVariable/fNLitterSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNLitterSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNOx_tavg-u-hxy-lnd.json b/brandedVariable/fNOx_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..71adda29 --- /dev/null +++ b/brandedVariable/fNOx_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNOx_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNProduct_tavg-u-hxy-lnd.json b/brandedVariable/fNProduct_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c7561a33 --- /dev/null +++ b/brandedVariable/fNProduct_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNProduct_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNVegLitter_tavg-u-hxy-lnd.json b/brandedVariable/fNVegLitter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..0ea3ab81 --- /dev/null +++ b/brandedVariable/fNVegLitter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNVegLitter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNVegSoil_tavg-u-hxy-lnd.json b/brandedVariable/fNVegSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..933cbda8 --- /dev/null +++ b/brandedVariable/fNVegSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNVegSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNdep_tavg-u-hxy-lnd.json b/brandedVariable/fNdep_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f167ed3d --- /dev/null +++ b/brandedVariable/fNdep_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNdep_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNfert_tavg-u-hxy-lnd.json b/brandedVariable/fNfert_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..45725fbc --- /dev/null +++ b/brandedVariable/fNfert_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNfert_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNgasFire_tavg-u-hxy-lnd.json b/brandedVariable/fNgasFire_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..67f2f686 --- /dev/null +++ b/brandedVariable/fNgasFire_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNgasFire_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNgasNonFire_tavg-u-hxy-lnd.json b/brandedVariable/fNgasNonFire_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..05f280d6 --- /dev/null +++ b/brandedVariable/fNgasNonFire_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNgasNonFire_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNgas_tavg-u-hxy-lnd.json b/brandedVariable/fNgas_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..91e98519 --- /dev/null +++ b/brandedVariable/fNgas_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNgas_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNleach_tavg-u-hxy-lnd.json b/brandedVariable/fNleach_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..1cb9b8b6 --- /dev/null +++ b/brandedVariable/fNleach_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNleach_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNloss_tavg-u-hxy-lnd.json b/brandedVariable/fNloss_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..defcf28d --- /dev/null +++ b/brandedVariable/fNloss_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNloss_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNnetmin_tavg-u-hxy-lnd.json b/brandedVariable/fNnetmin_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4cfd7422 --- /dev/null +++ b/brandedVariable/fNnetmin_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNnetmin_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fNup_tavg-u-hxy-lnd.json b/brandedVariable/fNup_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..5d0068e8 --- /dev/null +++ b/brandedVariable/fNup_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fNup_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fProductDecomp_tavg-u-hxy-lnd.json b/brandedVariable/fProductDecomp_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2bb8fb07 --- /dev/null +++ b/brandedVariable/fProductDecomp_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fProductDecomp_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegFire_tavg-u-hxy-lnd.json b/brandedVariable/fVegFire_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..434d3890 --- /dev/null +++ b/brandedVariable/fVegFire_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegFire_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegLitterMortality_tavg-u-hxy-lnd.json b/brandedVariable/fVegLitterMortality_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cba9ffca --- /dev/null +++ b/brandedVariable/fVegLitterMortality_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegLitterMortality_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegLitterSenescence_tavg-u-hxy-lnd.json b/brandedVariable/fVegLitterSenescence_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cc82284a --- /dev/null +++ b/brandedVariable/fVegLitterSenescence_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegLitterSenescence_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegLitter_tavg-u-hxy-lnd.json b/brandedVariable/fVegLitter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3690ce84 --- /dev/null +++ b/brandedVariable/fVegLitter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegLitter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegSoilMortality_tavg-u-hxy-lnd.json b/brandedVariable/fVegSoilMortality_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cb592c24 --- /dev/null +++ b/brandedVariable/fVegSoilMortality_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegSoilMortality_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegSoilSenescence_tavg-u-hxy-lnd.json b/brandedVariable/fVegSoilSenescence_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3484a51a --- /dev/null +++ b/brandedVariable/fVegSoilSenescence_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegSoilSenescence_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fVegSoil_tavg-u-hxy-lnd.json b/brandedVariable/fVegSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4fcb6924 --- /dev/null +++ b/brandedVariable/fVegSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fVegSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2antt_tavg-u-hxy-u.json b/brandedVariable/fco2antt_tavg-u-hxy-u.json new file mode 100644 index 00000000..d681fa9e --- /dev/null +++ b/brandedVariable/fco2antt_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2antt_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2antt_tpt-u-hxys-u.json b/brandedVariable/fco2antt_tpt-u-hxys-u.json new file mode 100644 index 00000000..4daa8fe4 --- /dev/null +++ b/brandedVariable/fco2antt_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2antt_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2fos_tavg-u-hxy-u.json b/brandedVariable/fco2fos_tavg-u-hxy-u.json new file mode 100644 index 00000000..efe1b0bb --- /dev/null +++ b/brandedVariable/fco2fos_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2fos_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2fos_tpt-u-hxys-u.json b/brandedVariable/fco2fos_tpt-u-hxys-u.json new file mode 100644 index 00000000..8e96cecb --- /dev/null +++ b/brandedVariable/fco2fos_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2fos_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2nat_tavg-u-hxy-u.json b/brandedVariable/fco2nat_tavg-u-hxy-u.json new file mode 100644 index 00000000..a82180cd --- /dev/null +++ b/brandedVariable/fco2nat_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2nat_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fco2nat_tpt-u-hxys-u.json b/brandedVariable/fco2nat_tpt-u-hxys-u.json new file mode 100644 index 00000000..83e035e8 --- /dev/null +++ b/brandedVariable/fco2nat_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fco2nat_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fg13co2_tavg-u-hxy-sea.json b/brandedVariable/fg13co2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..9bab6e7d --- /dev/null +++ b/brandedVariable/fg13co2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fg13co2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fg14co2_tavg-u-hxy-sea.json b/brandedVariable/fg14co2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..468f1b8b --- /dev/null +++ b/brandedVariable/fg14co2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fg14co2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fg14co2abio_tavg-u-hxy-sea.json b/brandedVariable/fg14co2abio_tavg-u-hxy-sea.json new file mode 100644 index 00000000..b5683f16 --- /dev/null +++ b/brandedVariable/fg14co2abio_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fg14co2abio_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fgco2_tavg-u-hxy-sea.json b/brandedVariable/fgco2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..48d76ada --- /dev/null +++ b/brandedVariable/fgco2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fgco2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fgdms_tavg-u-hxy-sea.json b/brandedVariable/fgdms_tavg-u-hxy-sea.json new file mode 100644 index 00000000..7032ecde --- /dev/null +++ b/brandedVariable/fgdms_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fgdms_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ficeberg_tavg-ol-hxy-sea.json b/brandedVariable/ficeberg_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..dc286839 --- /dev/null +++ b/brandedVariable/ficeberg_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ficeberg_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ficeberg_tavg-u-hxy-sea.json b/brandedVariable/ficeberg_tavg-u-hxy-sea.json new file mode 100644 index 00000000..260de60c --- /dev/null +++ b/brandedVariable/ficeberg_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ficeberg_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/flandice_tavg-u-hxy-sea.json b/brandedVariable/flandice_tavg-u-hxy-sea.json new file mode 100644 index 00000000..c3b18e5b --- /dev/null +++ b/brandedVariable/flandice_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "flandice_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/flashrate_tavg-u-hxy-u.json b/brandedVariable/flashrate_tavg-u-hxy-u.json new file mode 100644 index 00000000..cf767038 --- /dev/null +++ b/brandedVariable/flashrate_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "flashrate_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fracInLut_tsum-u-hxy-lnd.json b/brandedVariable/fracInLut_tsum-u-hxy-lnd.json new file mode 100644 index 00000000..d1012dcc --- /dev/null +++ b/brandedVariable/fracInLut_tsum-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fracInLut_tsum-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fracLut_tpt-u-hxy-u.json b/brandedVariable/fracLut_tpt-u-hxy-u.json new file mode 100644 index 00000000..5e1d6765 --- /dev/null +++ b/brandedVariable/fracLut_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fracLut_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fracOutLut_tsum-u-hxy-lnd.json b/brandedVariable/fracOutLut_tsum-u-hxy-lnd.json new file mode 100644 index 00000000..aea256eb --- /dev/null +++ b/brandedVariable/fracOutLut_tsum-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fracOutLut_tsum-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/frfe_tavg-u-hxy-sea.json b/brandedVariable/frfe_tavg-u-hxy-sea.json new file mode 100644 index 00000000..508f593c --- /dev/null +++ b/brandedVariable/frfe_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "frfe_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fric_tavg-u-hxy-sea.json b/brandedVariable/fric_tavg-u-hxy-sea.json new file mode 100644 index 00000000..079cba63 --- /dev/null +++ b/brandedVariable/fric_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fric_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/friver_tavg-u-hxy-sea.json b/brandedVariable/friver_tavg-u-hxy-sea.json new file mode 100644 index 00000000..32668311 --- /dev/null +++ b/brandedVariable/friver_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "friver_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/frn_tavg-u-hxy-sea.json b/brandedVariable/frn_tavg-u-hxy-sea.json new file mode 100644 index 00000000..f10a020e --- /dev/null +++ b/brandedVariable/frn_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "frn_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/froc_tavg-u-hxy-sea.json b/brandedVariable/froc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d4201b4b --- /dev/null +++ b/brandedVariable/froc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "froc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fsfe_tavg-u-hxy-sea.json b/brandedVariable/fsfe_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2fa00b72 --- /dev/null +++ b/brandedVariable/fsfe_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fsfe_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/fsn_tavg-u-hxy-sea.json b/brandedVariable/fsn_tavg-u-hxy-sea.json new file mode 100644 index 00000000..be976e40 --- /dev/null +++ b/brandedVariable/fsn_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fsn_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gppLut_tavg-u-hxy-multi.json b/brandedVariable/gppLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..a99eafc3 --- /dev/null +++ b/brandedVariable/gppLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gppLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gppVgt_tavg-u-hxy-multi.json b/brandedVariable/gppVgt_tavg-u-hxy-multi.json new file mode 100644 index 00000000..3c0202cc --- /dev/null +++ b/brandedVariable/gppVgt_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gppVgt_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gpp_tavg-u-hxy-lnd.json b/brandedVariable/gpp_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e5026ace --- /dev/null +++ b/brandedVariable/gpp_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gpp_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gpp_tavg-u-hxy-ng.json b/brandedVariable/gpp_tavg-u-hxy-ng.json new file mode 100644 index 00000000..51ffd3e2 --- /dev/null +++ b/brandedVariable/gpp_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gpp_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gpp_tavg-u-hxy-shb.json b/brandedVariable/gpp_tavg-u-hxy-shb.json new file mode 100644 index 00000000..3032698f --- /dev/null +++ b/brandedVariable/gpp_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gpp_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gpp_tavg-u-hxy-tree.json b/brandedVariable/gpp_tavg-u-hxy-tree.json new file mode 100644 index 00000000..1ee1c21d --- /dev/null +++ b/brandedVariable/gpp_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gpp_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gppc13_tavg-u-hxy-lnd.json b/brandedVariable/gppc13_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..d09c6aa2 --- /dev/null +++ b/brandedVariable/gppc13_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gppc13_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/gppc14_tavg-u-hxy-lnd.json b/brandedVariable/gppc14_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..56634611 --- /dev/null +++ b/brandedVariable/gppc14_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gppc14_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/grassFracC3_tavg-u-hxy-u.json b/brandedVariable/grassFracC3_tavg-u-hxy-u.json new file mode 100644 index 00000000..ea4bda21 --- /dev/null +++ b/brandedVariable/grassFracC3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "grassFracC3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/grassFracC4_tavg-u-hxy-u.json b/brandedVariable/grassFracC4_tavg-u-hxy-u.json new file mode 100644 index 00000000..e35ed70d --- /dev/null +++ b/brandedVariable/grassFracC4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "grassFracC4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/grassFrac_tavg-u-hxy-u.json b/brandedVariable/grassFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..57ad70e3 --- /dev/null +++ b/brandedVariable/grassFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "grassFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/graz_tavg-ol-hxy-sea.json b/brandedVariable/graz_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..1e8e1a75 --- /dev/null +++ b/brandedVariable/graz_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "graz_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/h2_tavg-al-hxy-u.json b/brandedVariable/h2_tavg-al-hxy-u.json new file mode 100644 index 00000000..71f53059 --- /dev/null +++ b/brandedVariable/h2_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/h2loss_tavg-al-hxy-u.json b/brandedVariable/h2loss_tavg-al-hxy-u.json new file mode 100644 index 00000000..1fbfece9 --- /dev/null +++ b/brandedVariable/h2loss_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2loss_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/h2o_tavg-al-hxy-u.json b/brandedVariable/h2o_tavg-al-hxy-u.json new file mode 100644 index 00000000..fd7b9d5d --- /dev/null +++ b/brandedVariable/h2o_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2o_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/h2o_tavg-p39-hy-air.json b/brandedVariable/h2o_tavg-p39-hy-air.json new file mode 100644 index 00000000..f829bf5b --- /dev/null +++ b/brandedVariable/h2o_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2o_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/h2prod_tavg-al-hxy-u.json b/brandedVariable/h2prod_tavg-al-hxy-u.json new file mode 100644 index 00000000..2abe5059 --- /dev/null +++ b/brandedVariable/h2prod_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2prod_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hcfc22_tavg-al-hxy-u.json b/brandedVariable/hcfc22_tavg-al-hxy-u.json new file mode 100644 index 00000000..e58cabc5 --- /dev/null +++ b/brandedVariable/hcfc22_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hcfc22_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hcho_tavg-al-hxy-u.json b/brandedVariable/hcho_tavg-al-hxy-u.json new file mode 100644 index 00000000..b94e6a70 --- /dev/null +++ b/brandedVariable/hcho_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hcho_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hcl_tavg-al-hxy-u.json b/brandedVariable/hcl_tavg-al-hxy-u.json new file mode 100644 index 00000000..03f82509 --- /dev/null +++ b/brandedVariable/hcl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hcl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hcl_tavg-p39-hy-air.json b/brandedVariable/hcl_tavg-p39-hy-air.json new file mode 100644 index 00000000..b1bbee22 --- /dev/null +++ b/brandedVariable/hcl_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hcl_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfacrossline_tavg-u-ht-sea.json b/brandedVariable/hfacrossline_tavg-u-ht-sea.json new file mode 100644 index 00000000..54fb299a --- /dev/null +++ b/brandedVariable/hfacrossline_tavg-u-ht-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfacrossline_tavg-u-ht-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfbasin_tavg-u-hys-sea.json b/brandedVariable/hfbasin_tavg-u-hys-sea.json new file mode 100644 index 00000000..2e9b91aa --- /dev/null +++ b/brandedVariable/hfbasin_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfbasin_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfbasinpadv_tavg-u-hys-sea.json b/brandedVariable/hfbasinpadv_tavg-u-hys-sea.json new file mode 100644 index 00000000..be7094dc --- /dev/null +++ b/brandedVariable/hfbasinpadv_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfbasinpadv_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfbasinpmadv_tavg-u-hys-sea.json b/brandedVariable/hfbasinpmadv_tavg-u-hys-sea.json new file mode 100644 index 00000000..9a602f5f --- /dev/null +++ b/brandedVariable/hfbasinpmadv_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfbasinpmadv_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfbasinpmdiff_tavg-u-hys-sea.json b/brandedVariable/hfbasinpmdiff_tavg-u-hys-sea.json new file mode 100644 index 00000000..5bfcafa8 --- /dev/null +++ b/brandedVariable/hfbasinpmdiff_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfbasinpmdiff_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfbasinpsmadv_tavg-u-hys-sea.json b/brandedVariable/hfbasinpsmadv_tavg-u-hys-sea.json new file mode 100644 index 00000000..3e34ee3b --- /dev/null +++ b/brandedVariable/hfbasinpsmadv_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfbasinpsmadv_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfc125_tavg-al-hxy-u.json b/brandedVariable/hfc125_tavg-al-hxy-u.json new file mode 100644 index 00000000..eeaa8edc --- /dev/null +++ b/brandedVariable/hfc125_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfc125_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfc134a_tavg-al-hxy-u.json b/brandedVariable/hfc134a_tavg-al-hxy-u.json new file mode 100644 index 00000000..7a7fcdc3 --- /dev/null +++ b/brandedVariable/hfc134a_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfc134a_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfds_tavg-u-hxy-sea.json b/brandedVariable/hfds_tavg-u-hxy-sea.json new file mode 100644 index 00000000..fa1b2313 --- /dev/null +++ b/brandedVariable/hfds_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfds_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfdsl_tavg-u-hxy-lnd.json b/brandedVariable/hfdsl_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e4d1c8f3 --- /dev/null +++ b/brandedVariable/hfdsl_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfdsl_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfdsn_tavg-u-hxy-lnd.json b/brandedVariable/hfdsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..94c34f42 --- /dev/null +++ b/brandedVariable/hfdsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfdsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfdsnb_tavg-u-hxy-lnd.json b/brandedVariable/hfdsnb_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..dab6f39a --- /dev/null +++ b/brandedVariable/hfdsnb_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfdsnb_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfevapds_tavg-u-hxy-ifs.json b/brandedVariable/hfevapds_tavg-u-hxy-ifs.json new file mode 100644 index 00000000..755b2e95 --- /dev/null +++ b/brandedVariable/hfevapds_tavg-u-hxy-ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfevapds_tavg-u-hxy-ifs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfgeou_tavg-u-hxy-sea.json b/brandedVariable/hfgeou_tavg-u-hxy-sea.json new file mode 100644 index 00000000..07360ca3 --- /dev/null +++ b/brandedVariable/hfgeou_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfgeou_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfgeou_ti-u-hxy-sea.json b/brandedVariable/hfgeou_ti-u-hxy-sea.json new file mode 100644 index 00000000..f993eb94 --- /dev/null +++ b/brandedVariable/hfgeou_ti-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfgeou_ti-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfgeoubed_tavg-u-hxy-gis.json b/brandedVariable/hfgeoubed_tavg-u-hxy-gis.json new file mode 100644 index 00000000..e1db7338 --- /dev/null +++ b/brandedVariable/hfgeoubed_tavg-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfgeoubed_tavg-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfgeoubed_ti-u-hxy-gis.json b/brandedVariable/hfgeoubed_ti-u-hxy-gis.json new file mode 100644 index 00000000..f5794847 --- /dev/null +++ b/brandedVariable/hfgeoubed_ti-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfgeoubed_ti-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfibthermds_tavg-ol-hxy-sea.json b/brandedVariable/hfibthermds_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..acc9dc33 --- /dev/null +++ b/brandedVariable/hfibthermds_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfibthermds_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfibthermds_tavg-u-hxy-sea.json b/brandedVariable/hfibthermds_tavg-u-hxy-sea.json new file mode 100644 index 00000000..dfd1a3fb --- /dev/null +++ b/brandedVariable/hfibthermds_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfibthermds_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hflsLut_tavg-u-hxy-multi.json b/brandedVariable/hflsLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..045a352b --- /dev/null +++ b/brandedVariable/hflsLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hflsLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfls_tavg-u-hxy-is.json b/brandedVariable/hfls_tavg-u-hxy-is.json new file mode 100644 index 00000000..73185a75 --- /dev/null +++ b/brandedVariable/hfls_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfls_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfls_tavg-u-hxy-u.json b/brandedVariable/hfls_tavg-u-hxy-u.json new file mode 100644 index 00000000..4a69e65e --- /dev/null +++ b/brandedVariable/hfls_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfls_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfls_tpt-u-hxys-u.json b/brandedVariable/hfls_tpt-u-hxys-u.json new file mode 100644 index 00000000..cd1936f5 --- /dev/null +++ b/brandedVariable/hfls_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfls_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfrainds_tavg-u-hxy-ifs.json b/brandedVariable/hfrainds_tavg-u-hxy-ifs.json new file mode 100644 index 00000000..e6aa31d4 --- /dev/null +++ b/brandedVariable/hfrainds_tavg-u-hxy-ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfrainds_tavg-u-hxy-ifs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfrunoffds_tavg-ol-hxy-sea.json b/brandedVariable/hfrunoffds_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..81ecbb1b --- /dev/null +++ b/brandedVariable/hfrunoffds_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfrunoffds_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfrunoffds_tavg-u-hxy-sea.json b/brandedVariable/hfrunoffds_tavg-u-hxy-sea.json new file mode 100644 index 00000000..6e7513e3 --- /dev/null +++ b/brandedVariable/hfrunoffds_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfrunoffds_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfsnthermds_tavg-ol-hxy-sea.json b/brandedVariable/hfsnthermds_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..473e6e72 --- /dev/null +++ b/brandedVariable/hfsnthermds_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfsnthermds_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfsnthermds_tavg-u-hxy-sea.json b/brandedVariable/hfsnthermds_tavg-u-hxy-sea.json new file mode 100644 index 00000000..a7794245 --- /dev/null +++ b/brandedVariable/hfsnthermds_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfsnthermds_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfssLut_tavg-u-hxy-multi.json b/brandedVariable/hfssLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..e581cf15 --- /dev/null +++ b/brandedVariable/hfssLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfssLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfss_tavg-u-hxy-is.json b/brandedVariable/hfss_tavg-u-hxy-is.json new file mode 100644 index 00000000..154129d6 --- /dev/null +++ b/brandedVariable/hfss_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfss_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfss_tavg-u-hxy-u.json b/brandedVariable/hfss_tavg-u-hxy-u.json new file mode 100644 index 00000000..37e2d973 --- /dev/null +++ b/brandedVariable/hfss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfss_tpt-u-hxys-u.json b/brandedVariable/hfss_tpt-u-hxys-u.json new file mode 100644 index 00000000..1f49fd7a --- /dev/null +++ b/brandedVariable/hfss_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfss_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfx_tavg-ol-hxy-sea.json b/brandedVariable/hfx_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..19eab3fc --- /dev/null +++ b/brandedVariable/hfx_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfx_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfx_tavg-u-hxy-sea.json b/brandedVariable/hfx_tavg-u-hxy-sea.json new file mode 100644 index 00000000..329d394f --- /dev/null +++ b/brandedVariable/hfx_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfx_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfy_tavg-ol-hxy-sea.json b/brandedVariable/hfy_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..69adc376 --- /dev/null +++ b/brandedVariable/hfy_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfy_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hfy_tavg-u-hxy-sea.json b/brandedVariable/hfy_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ba3565a7 --- /dev/null +++ b/brandedVariable/hfy_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hfy_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hno3_tavg-al-hxy-u.json b/brandedVariable/hno3_tavg-al-hxy-u.json new file mode 100644 index 00000000..58dc9fcd --- /dev/null +++ b/brandedVariable/hno3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hno3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hno3_tavg-p39-hy-air.json b/brandedVariable/hno3_tavg-p39-hy-air.json new file mode 100644 index 00000000..177426e5 --- /dev/null +++ b/brandedVariable/hno3_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hno3_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ho2_tavg-p39-hy-air.json b/brandedVariable/ho2_tavg-p39-hy-air.json new file mode 100644 index 00000000..d8d5a993 --- /dev/null +++ b/brandedVariable/ho2_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ho2_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/htovgyre_tavg-u-hys-sea.json b/brandedVariable/htovgyre_tavg-u-hys-sea.json new file mode 100644 index 00000000..e67a649d --- /dev/null +++ b/brandedVariable/htovgyre_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "htovgyre_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/htovovrt_tavg-u-hys-sea.json b/brandedVariable/htovovrt_tavg-u-hys-sea.json new file mode 100644 index 00000000..3ec7d66e --- /dev/null +++ b/brandedVariable/htovovrt_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "htovovrt_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tavg-700hPa-hxy-air.json b/brandedVariable/hur_tavg-700hPa-hxy-air.json new file mode 100644 index 00000000..47c330c8 --- /dev/null +++ b/brandedVariable/hur_tavg-700hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tavg-700hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tavg-al-hxy-u.json b/brandedVariable/hur_tavg-al-hxy-u.json new file mode 100644 index 00000000..093f1e28 --- /dev/null +++ b/brandedVariable/hur_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tavg-p19-hxy-air.json b/brandedVariable/hur_tavg-p19-hxy-air.json new file mode 100644 index 00000000..fba1f95c --- /dev/null +++ b/brandedVariable/hur_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tavg-p19-hxy-u.json b/brandedVariable/hur_tavg-p19-hxy-u.json new file mode 100644 index 00000000..3ce258ff --- /dev/null +++ b/brandedVariable/hur_tavg-p19-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tavg-p19-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tpt-100hPa-hxy-u.json b/brandedVariable/hur_tpt-100hPa-hxy-u.json new file mode 100644 index 00000000..72e64e6d --- /dev/null +++ b/brandedVariable/hur_tpt-100hPa-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tpt-100hPa-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tpt-500hPa-hxy-air.json b/brandedVariable/hur_tpt-500hPa-hxy-air.json new file mode 100644 index 00000000..ca824fbd --- /dev/null +++ b/brandedVariable/hur_tpt-500hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tpt-500hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tpt-850hPa-hxy-air.json b/brandedVariable/hur_tpt-850hPa-hxy-air.json new file mode 100644 index 00000000..88c546f1 --- /dev/null +++ b/brandedVariable/hur_tpt-850hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tpt-850hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hur_tpt-al-hxys-u.json b/brandedVariable/hur_tpt-al-hxys-u.json new file mode 100644 index 00000000..ad61ec7d --- /dev/null +++ b/brandedVariable/hur_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hur_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tavg-h2m-hxy-u.json b/brandedVariable/hurs_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..d1d49a0e --- /dev/null +++ b/brandedVariable/hurs_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tmax-h2m-hxy-u.json b/brandedVariable/hurs_tmax-h2m-hxy-u.json new file mode 100644 index 00000000..794b2049 --- /dev/null +++ b/brandedVariable/hurs_tmax-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tmax-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tmin-h2m-hxy-crp.json b/brandedVariable/hurs_tmin-h2m-hxy-crp.json new file mode 100644 index 00000000..045bc9da --- /dev/null +++ b/brandedVariable/hurs_tmin-h2m-hxy-crp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tmin-h2m-hxy-crp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tmin-h2m-hxy-u.json b/brandedVariable/hurs_tmin-h2m-hxy-u.json new file mode 100644 index 00000000..163b28a9 --- /dev/null +++ b/brandedVariable/hurs_tmin-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tmin-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tpt-h2m-hxy-u.json b/brandedVariable/hurs_tpt-h2m-hxy-u.json new file mode 100644 index 00000000..1ce1ae7d --- /dev/null +++ b/brandedVariable/hurs_tpt-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tpt-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hurs_tpt-h2m-hxys-u.json b/brandedVariable/hurs_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..f4b31225 --- /dev/null +++ b/brandedVariable/hurs_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hurs_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tavg-al-hxy-u.json b/brandedVariable/hus_tavg-al-hxy-u.json new file mode 100644 index 00000000..a026029f --- /dev/null +++ b/brandedVariable/hus_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tavg-p19-hxy-u.json b/brandedVariable/hus_tavg-p19-hxy-u.json new file mode 100644 index 00000000..01ecab47 --- /dev/null +++ b/brandedVariable/hus_tavg-p19-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tavg-p19-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tpt-al-hxy-u.json b/brandedVariable/hus_tpt-al-hxy-u.json new file mode 100644 index 00000000..782c2670 --- /dev/null +++ b/brandedVariable/hus_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tpt-al-hxys-u.json b/brandedVariable/hus_tpt-al-hxys-u.json new file mode 100644 index 00000000..14c76db5 --- /dev/null +++ b/brandedVariable/hus_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tpt-p6-hxy-air.json b/brandedVariable/hus_tpt-p6-hxy-air.json new file mode 100644 index 00000000..01dd92e6 --- /dev/null +++ b/brandedVariable/hus_tpt-p6-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tpt-p6-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/hus_tpt-p7h-hxy-air.json b/brandedVariable/hus_tpt-p7h-hxy-air.json new file mode 100644 index 00000000..9506e541 --- /dev/null +++ b/brandedVariable/hus_tpt-p7h-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hus_tpt-p7h-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/huss_tavg-h2m-hxy-u.json b/brandedVariable/huss_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..900050af --- /dev/null +++ b/brandedVariable/huss_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "huss_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/huss_tpt-h2m-hxy-u.json b/brandedVariable/huss_tpt-h2m-hxy-u.json new file mode 100644 index 00000000..249eee27 --- /dev/null +++ b/brandedVariable/huss_tpt-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "huss_tpt-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/huss_tpt-h2m-hxys-u.json b/brandedVariable/huss_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..a618e568 --- /dev/null +++ b/brandedVariable/huss_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "huss_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/iareafl_tavg-u-hm-fis.json b/brandedVariable/iareafl_tavg-u-hm-fis.json new file mode 100644 index 00000000..c2db321f --- /dev/null +++ b/brandedVariable/iareafl_tavg-u-hm-fis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "iareafl_tavg-u-hm-fis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/iareagr_tavg-u-hm-gis.json b/brandedVariable/iareagr_tavg-u-hm-gis.json new file mode 100644 index 00000000..53d9eeb4 --- /dev/null +++ b/brandedVariable/iareagr_tavg-u-hm-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "iareagr_tavg-u-hm-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/icem_tavg-u-hxy-is.json b/brandedVariable/icem_tavg-u-hxy-is.json new file mode 100644 index 00000000..0d642f98 --- /dev/null +++ b/brandedVariable/icem_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "icem_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/icfriver_tavg-u-hxy-sea.json b/brandedVariable/icfriver_tavg-u-hxy-sea.json new file mode 100644 index 00000000..0bab7d3e --- /dev/null +++ b/brandedVariable/icfriver_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "icfriver_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intdic_tavg-u-hxy-sea.json b/brandedVariable/intdic_tavg-u-hxy-sea.json new file mode 100644 index 00000000..fe472415 --- /dev/null +++ b/brandedVariable/intdic_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intdic_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intdoc_tavg-u-hxy-sea.json b/brandedVariable/intdoc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2be96a4e --- /dev/null +++ b/brandedVariable/intdoc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intdoc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intparag_tavg-u-hxy-sea.json b/brandedVariable/intparag_tavg-u-hxy-sea.json new file mode 100644 index 00000000..642a0432 --- /dev/null +++ b/brandedVariable/intparag_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intparag_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpbfe_tavg-u-hxy-sea.json b/brandedVariable/intpbfe_tavg-u-hxy-sea.json new file mode 100644 index 00000000..af3c1cdb --- /dev/null +++ b/brandedVariable/intpbfe_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpbfe_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpbn_tavg-u-hxy-sea.json b/brandedVariable/intpbn_tavg-u-hxy-sea.json new file mode 100644 index 00000000..94baf3b3 --- /dev/null +++ b/brandedVariable/intpbn_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpbn_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpbp_tavg-u-hxy-sea.json b/brandedVariable/intpbp_tavg-u-hxy-sea.json new file mode 100644 index 00000000..5cd8463c --- /dev/null +++ b/brandedVariable/intpbp_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpbp_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpbsi_tavg-u-hxy-sea.json b/brandedVariable/intpbsi_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d69123a7 --- /dev/null +++ b/brandedVariable/intpbsi_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpbsi_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpcalcite_tavg-u-hxy-sea.json b/brandedVariable/intpcalcite_tavg-u-hxy-sea.json new file mode 100644 index 00000000..fa17c467 --- /dev/null +++ b/brandedVariable/intpcalcite_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpcalcite_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpn2_tavg-u-hxy-sea.json b/brandedVariable/intpn2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..530d2ada --- /dev/null +++ b/brandedVariable/intpn2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpn2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpoc_tavg-u-hxy-sea.json b/brandedVariable/intpoc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d6e46824 --- /dev/null +++ b/brandedVariable/intpoc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpoc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpp_tavg-u-hxy-sea.json b/brandedVariable/intpp_tavg-u-hxy-sea.json new file mode 100644 index 00000000..338e136c --- /dev/null +++ b/brandedVariable/intpp_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpp_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppcalc_tavg-u-hxy-sea.json b/brandedVariable/intppcalc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..dd4364f2 --- /dev/null +++ b/brandedVariable/intppcalc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppcalc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppdiat_tavg-u-hxy-sea.json b/brandedVariable/intppdiat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3db8e7a8 --- /dev/null +++ b/brandedVariable/intppdiat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppdiat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppdiaz_tavg-u-hxy-sea.json b/brandedVariable/intppdiaz_tavg-u-hxy-sea.json new file mode 100644 index 00000000..4bde2433 --- /dev/null +++ b/brandedVariable/intppdiaz_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppdiaz_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppmisc_tavg-u-hxy-sea.json b/brandedVariable/intppmisc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..c45a5edb --- /dev/null +++ b/brandedVariable/intppmisc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppmisc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppnano_tavg-u-hxy-sea.json b/brandedVariable/intppnano_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3f5be2d0 --- /dev/null +++ b/brandedVariable/intppnano_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppnano_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intppnitrate_tavg-u-hxy-sea.json b/brandedVariable/intppnitrate_tavg-u-hxy-sea.json new file mode 100644 index 00000000..eb3e4eb5 --- /dev/null +++ b/brandedVariable/intppnitrate_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intppnitrate_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intpppico_tavg-u-hxy-sea.json b/brandedVariable/intpppico_tavg-u-hxy-sea.json new file mode 100644 index 00000000..8050a986 --- /dev/null +++ b/brandedVariable/intpppico_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intpppico_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intuadse_tavg-u-hxy-u.json b/brandedVariable/intuadse_tavg-u-hxy-u.json new file mode 100644 index 00000000..fae0dba3 --- /dev/null +++ b/brandedVariable/intuadse_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intuadse_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intuaw_tavg-u-hxy-u.json b/brandedVariable/intuaw_tavg-u-hxy-u.json new file mode 100644 index 00000000..c4d4617a --- /dev/null +++ b/brandedVariable/intuaw_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intuaw_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intuaw_tpt-u-hxy-u.json b/brandedVariable/intuaw_tpt-u-hxy-u.json new file mode 100644 index 00000000..06c63320 --- /dev/null +++ b/brandedVariable/intuaw_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intuaw_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intvadse_tavg-u-hxy-u.json b/brandedVariable/intvadse_tavg-u-hxy-u.json new file mode 100644 index 00000000..170eef5c --- /dev/null +++ b/brandedVariable/intvadse_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intvadse_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intvaw_tavg-u-hxy-u.json b/brandedVariable/intvaw_tavg-u-hxy-u.json new file mode 100644 index 00000000..35bd919c --- /dev/null +++ b/brandedVariable/intvaw_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intvaw_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/intvaw_tpt-u-hxy-u.json b/brandedVariable/intvaw_tpt-u-hxy-u.json new file mode 100644 index 00000000..879ad845 --- /dev/null +++ b/brandedVariable/intvaw_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "intvaw_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/irrDem_tavg-u-hxy-u.json b/brandedVariable/irrDem_tavg-u-hxy-u.json new file mode 100644 index 00000000..5d7d3729 --- /dev/null +++ b/brandedVariable/irrDem_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "irrDem_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/irrGw_tavg-u-hxy-u.json b/brandedVariable/irrGw_tavg-u-hxy-u.json new file mode 100644 index 00000000..56b02f33 --- /dev/null +++ b/brandedVariable/irrGw_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "irrGw_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/irrLut_tavg-u-hxy-multi.json b/brandedVariable/irrLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..89a64c53 --- /dev/null +++ b/brandedVariable/irrLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "irrLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/irrLut_tavg-u-hxy-u.json b/brandedVariable/irrLut_tavg-u-hxy-u.json new file mode 100644 index 00000000..9c2a1e38 --- /dev/null +++ b/brandedVariable/irrLut_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "irrLut_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/irrSurf_tavg-u-hxy-u.json b/brandedVariable/irrSurf_tavg-u-hxy-u.json new file mode 100644 index 00000000..5dac22bb --- /dev/null +++ b/brandedVariable/irrSurf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "irrSurf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/isop_tavg-al-hxy-u.json b/brandedVariable/isop_tavg-al-hxy-u.json new file mode 100644 index 00000000..e6ffd460 --- /dev/null +++ b/brandedVariable/isop_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "isop_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/jno2_tavg-al-hxy-u.json b/brandedVariable/jno2_tavg-al-hxy-u.json new file mode 100644 index 00000000..73d1bacf --- /dev/null +++ b/brandedVariable/jno2_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "jno2_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/jpdftaureicemodis_tavg-u-hxy-u.json b/brandedVariable/jpdftaureicemodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..cab6644a --- /dev/null +++ b/brandedVariable/jpdftaureicemodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "jpdftaureicemodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/jpdftaureliqmodis_tavg-u-hxy-u.json b/brandedVariable/jpdftaureliqmodis_tavg-u-hxy-u.json new file mode 100644 index 00000000..06d3a506 --- /dev/null +++ b/brandedVariable/jpdftaureliqmodis_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "jpdftaureliqmodis_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/laiLut_tavg-u-hxy-multi.json b/brandedVariable/laiLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..0416087b --- /dev/null +++ b/brandedVariable/laiLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "laiLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/laiVgt_tavg-u-hxy-multi.json b/brandedVariable/laiVgt_tavg-u-hxy-multi.json new file mode 100644 index 00000000..a08a6c12 --- /dev/null +++ b/brandedVariable/laiVgt_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "laiVgt_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lai_tavg-u-hxy-lnd.json b/brandedVariable/lai_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..59130386 --- /dev/null +++ b/brandedVariable/lai_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lai_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/landCoverFrac_tavg-u-hxy-u.json b/brandedVariable/landCoverFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..f1bbb381 --- /dev/null +++ b/brandedVariable/landCoverFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "landCoverFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lat_ti-u-hxys-u.json b/brandedVariable/lat_ti-u-hxys-u.json new file mode 100644 index 00000000..db48b10d --- /dev/null +++ b/brandedVariable/lat_ti-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lat_ti-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/libmassbf_tavg-u-hxy-fis.json b/brandedVariable/libmassbf_tavg-u-hxy-fis.json new file mode 100644 index 00000000..fdb63d42 --- /dev/null +++ b/brandedVariable/libmassbf_tavg-u-hxy-fis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "libmassbf_tavg-u-hxy-fis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/libmassbf_tavg-u-hxy-gis.json b/brandedVariable/libmassbf_tavg-u-hxy-gis.json new file mode 100644 index 00000000..78a8667f --- /dev/null +++ b/brandedVariable/libmassbf_tavg-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "libmassbf_tavg-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/licalvf_tavg-u-hxy-is.json b/brandedVariable/licalvf_tavg-u-hxy-is.json new file mode 100644 index 00000000..0d36bc17 --- /dev/null +++ b/brandedVariable/licalvf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "licalvf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lifmassbf_tavg-u-hxy-is.json b/brandedVariable/lifmassbf_tavg-u-hxy-is.json new file mode 100644 index 00000000..f6576453 --- /dev/null +++ b/brandedVariable/lifmassbf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lifmassbf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lim_tavg-u-hm-is.json b/brandedVariable/lim_tavg-u-hm-is.json new file mode 100644 index 00000000..1a056b8b --- /dev/null +++ b/brandedVariable/lim_tavg-u-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lim_tavg-u-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limfecalc_tavg-u-hxy-sea.json b/brandedVariable/limfecalc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..4bd634b7 --- /dev/null +++ b/brandedVariable/limfecalc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limfecalc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limfediat_tavg-u-hxy-sea.json b/brandedVariable/limfediat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..eb665f33 --- /dev/null +++ b/brandedVariable/limfediat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limfediat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limfediaz_tavg-u-hxy-sea.json b/brandedVariable/limfediaz_tavg-u-hxy-sea.json new file mode 100644 index 00000000..cf8270c0 --- /dev/null +++ b/brandedVariable/limfediaz_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limfediaz_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limfemisc_tavg-u-hxy-sea.json b/brandedVariable/limfemisc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..cda9c9e8 --- /dev/null +++ b/brandedVariable/limfemisc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limfemisc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limfepico_tavg-u-hxy-sea.json b/brandedVariable/limfepico_tavg-u-hxy-sea.json new file mode 100644 index 00000000..f35cb637 --- /dev/null +++ b/brandedVariable/limfepico_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limfepico_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limirrcalc_tavg-u-hxy-sea.json b/brandedVariable/limirrcalc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d0a2d7dd --- /dev/null +++ b/brandedVariable/limirrcalc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limirrcalc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limirrdiat_tavg-u-hxy-sea.json b/brandedVariable/limirrdiat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ba3ef66b --- /dev/null +++ b/brandedVariable/limirrdiat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limirrdiat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limirrdiaz_tavg-u-hxy-sea.json b/brandedVariable/limirrdiaz_tavg-u-hxy-sea.json new file mode 100644 index 00000000..5099824e --- /dev/null +++ b/brandedVariable/limirrdiaz_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limirrdiaz_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limirrmisc_tavg-u-hxy-sea.json b/brandedVariable/limirrmisc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3aa671d6 --- /dev/null +++ b/brandedVariable/limirrmisc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limirrmisc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limirrpico_tavg-u-hxy-sea.json b/brandedVariable/limirrpico_tavg-u-hxy-sea.json new file mode 100644 index 00000000..295db6c4 --- /dev/null +++ b/brandedVariable/limirrpico_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limirrpico_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limncalc_tavg-u-hxy-sea.json b/brandedVariable/limncalc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..735552bf --- /dev/null +++ b/brandedVariable/limncalc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limncalc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limndiat_tavg-u-hxy-sea.json b/brandedVariable/limndiat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..bc15f5bb --- /dev/null +++ b/brandedVariable/limndiat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limndiat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limndiaz_tavg-u-hxy-sea.json b/brandedVariable/limndiaz_tavg-u-hxy-sea.json new file mode 100644 index 00000000..5ed34a8f --- /dev/null +++ b/brandedVariable/limndiaz_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limndiaz_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limnmisc_tavg-u-hxy-sea.json b/brandedVariable/limnmisc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..a01f082b --- /dev/null +++ b/brandedVariable/limnmisc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limnmisc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limnpico_tavg-u-hxy-sea.json b/brandedVariable/limnpico_tavg-u-hxy-sea.json new file mode 100644 index 00000000..26e25027 --- /dev/null +++ b/brandedVariable/limnpico_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limnpico_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/limnsw_tavg-u-hm-is.json b/brandedVariable/limnsw_tavg-u-hm-is.json new file mode 100644 index 00000000..71f43039 --- /dev/null +++ b/brandedVariable/limnsw_tavg-u-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "limnsw_tavg-u-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/litempbot_tavg-u-hxy-fis.json b/brandedVariable/litempbot_tavg-u-hxy-fis.json new file mode 100644 index 00000000..d1db0909 --- /dev/null +++ b/brandedVariable/litempbot_tavg-u-hxy-fis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "litempbot_tavg-u-hxy-fis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/litempbot_tavg-u-hxy-gis.json b/brandedVariable/litempbot_tavg-u-hxy-gis.json new file mode 100644 index 00000000..bbc47a3f --- /dev/null +++ b/brandedVariable/litempbot_tavg-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "litempbot_tavg-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/litemptop_tavg-u-hxy-is.json b/brandedVariable/litemptop_tavg-u-hxy-is.json new file mode 100644 index 00000000..b25b26b9 --- /dev/null +++ b/brandedVariable/litemptop_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "litemptop_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lithk_tavg-u-hxy-is.json b/brandedVariable/lithk_tavg-u-hxy-is.json new file mode 100644 index 00000000..32689df1 --- /dev/null +++ b/brandedVariable/lithk_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lithk_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lithk_ti-u-hxy-is.json b/brandedVariable/lithk_ti-u-hxy-is.json new file mode 100644 index 00000000..91fdf28a --- /dev/null +++ b/brandedVariable/lithk_ti-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lithk_ti-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lithk_ti-u-hxy-u.json b/brandedVariable/lithk_ti-u-hxy-u.json new file mode 100644 index 00000000..562c6518 --- /dev/null +++ b/brandedVariable/lithk_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lithk_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadbc_tavg-u-hxy-u.json b/brandedVariable/loadbc_tavg-u-hxy-u.json new file mode 100644 index 00000000..4e9eec1f --- /dev/null +++ b/brandedVariable/loadbc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadbc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loaddust_tavg-u-hxy-u.json b/brandedVariable/loaddust_tavg-u-hxy-u.json new file mode 100644 index 00000000..e1a044b5 --- /dev/null +++ b/brandedVariable/loaddust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loaddust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadnh4_tavg-u-hxy-u.json b/brandedVariable/loadnh4_tavg-u-hxy-u.json new file mode 100644 index 00000000..ceaed9d5 --- /dev/null +++ b/brandedVariable/loadnh4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadnh4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadno3_tavg-u-hxy-u.json b/brandedVariable/loadno3_tavg-u-hxy-u.json new file mode 100644 index 00000000..c3c30341 --- /dev/null +++ b/brandedVariable/loadno3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadno3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadoa_tavg-u-hxy-u.json b/brandedVariable/loadoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..515d0fec --- /dev/null +++ b/brandedVariable/loadoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadpoa_tavg-u-hxy-u.json b/brandedVariable/loadpoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..cc7139cf --- /dev/null +++ b/brandedVariable/loadpoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadpoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadso4_tavg-u-hxy-u.json b/brandedVariable/loadso4_tavg-u-hxy-u.json new file mode 100644 index 00000000..c363dc91 --- /dev/null +++ b/brandedVariable/loadso4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadso4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadsoa_tavg-u-hxy-u.json b/brandedVariable/loadsoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..d38d5559 --- /dev/null +++ b/brandedVariable/loadsoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadsoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/loadss_tavg-u-hxy-u.json b/brandedVariable/loadss_tavg-u-hxy-u.json new file mode 100644 index 00000000..8ab4f811 --- /dev/null +++ b/brandedVariable/loadss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "loadss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lon_ti-u-hxys-u.json b/brandedVariable/lon_ti-u-hxys-u.json new file mode 100644 index 00000000..fdaa4375 --- /dev/null +++ b/brandedVariable/lon_ti-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lon_ti-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lossch4_tavg-al-hxy-u.json b/brandedVariable/lossch4_tavg-al-hxy-u.json new file mode 100644 index 00000000..15c88dd8 --- /dev/null +++ b/brandedVariable/lossch4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lossch4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lossco_tavg-al-hxy-u.json b/brandedVariable/lossco_tavg-al-hxy-u.json new file mode 100644 index 00000000..d0636bcf --- /dev/null +++ b/brandedVariable/lossco_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lossco_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lossn2o_tavg-al-hxy-u.json b/brandedVariable/lossn2o_tavg-al-hxy-u.json new file mode 100644 index 00000000..2acd7ce3 --- /dev/null +++ b/brandedVariable/lossn2o_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lossn2o_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lwp_tavg-u-hxy-u.json b/brandedVariable/lwp_tavg-u-hxy-u.json new file mode 100644 index 00000000..23c53ac4 --- /dev/null +++ b/brandedVariable/lwp_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lwp_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/lwsnl_tavg-u-hxy-lnd.json b/brandedVariable/lwsnl_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3f4dc8a0 --- /dev/null +++ b/brandedVariable/lwsnl_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "lwsnl_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/masscello_tavg-ol-hxy-sea.json b/brandedVariable/masscello_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..ce62a369 --- /dev/null +++ b/brandedVariable/masscello_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "masscello_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/masscello_ti-ol-hxy-sea.json b/brandedVariable/masscello_ti-ol-hxy-sea.json new file mode 100644 index 00000000..11bb35a3 --- /dev/null +++ b/brandedVariable/masscello_ti-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "masscello_ti-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/masso_tavg-u-hm-sea.json b/brandedVariable/masso_tavg-u-hm-sea.json new file mode 100644 index 00000000..fb59e9b3 --- /dev/null +++ b/brandedVariable/masso_tavg-u-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "masso_tavg-u-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mc_tavg-alh-hxy-u.json b/brandedVariable/mc_tavg-alh-hxy-u.json new file mode 100644 index 00000000..f2da28c6 --- /dev/null +++ b/brandedVariable/mc_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mc_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mc_tpt-alh-hxys-u.json b/brandedVariable/mc_tpt-alh-hxys-u.json new file mode 100644 index 00000000..ad722629 --- /dev/null +++ b/brandedVariable/mc_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mc_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mcd_tavg-alh-hxy-u.json b/brandedVariable/mcd_tavg-alh-hxy-u.json new file mode 100644 index 00000000..f87d6a91 --- /dev/null +++ b/brandedVariable/mcd_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mcd_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mcu_tavg-alh-hxy-u.json b/brandedVariable/mcu_tavg-alh-hxy-u.json new file mode 100644 index 00000000..490c982a --- /dev/null +++ b/brandedVariable/mcu_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mcu_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/meanage_tavg-al-hxy-u.json b/brandedVariable/meanage_tavg-al-hxy-u.json new file mode 100644 index 00000000..357b795a --- /dev/null +++ b/brandedVariable/meanage_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "meanage_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/meanage_tavg-p39-hy-air.json b/brandedVariable/meanage_tavg-p39-hy-air.json new file mode 100644 index 00000000..9341eac5 --- /dev/null +++ b/brandedVariable/meanage_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "meanage_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mfo_tavg-u-ht-sea.json b/brandedVariable/mfo_tavg-u-ht-sea.json new file mode 100644 index 00000000..1afc60f7 --- /dev/null +++ b/brandedVariable/mfo_tavg-u-ht-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mfo_tavg-u-ht-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mlotst_tavg-u-hxy-sea.json b/brandedVariable/mlotst_tavg-u-hxy-sea.json new file mode 100644 index 00000000..0c1e10d3 --- /dev/null +++ b/brandedVariable/mlotst_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mlotst_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mlotstmax_tmax-u-hxy-sea.json b/brandedVariable/mlotstmax_tmax-u-hxy-sea.json new file mode 100644 index 00000000..8cb991f5 --- /dev/null +++ b/brandedVariable/mlotstmax_tmax-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mlotstmax_tmax-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mlotstmin_tmin-u-hxy-sea.json b/brandedVariable/mlotstmin_tmin-u-hxy-sea.json new file mode 100644 index 00000000..be030114 --- /dev/null +++ b/brandedVariable/mlotstmin_tmin-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mlotstmin_tmin-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mlotstsq_tavg-u-hxy-sea.json b/brandedVariable/mlotstsq_tavg-u-hxy-sea.json new file mode 100644 index 00000000..0fd0afc9 --- /dev/null +++ b/brandedVariable/mlotstsq_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mlotstsq_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmraerh2o_tavg-al-hxy-u.json b/brandedVariable/mmraerh2o_tavg-al-hxy-u.json new file mode 100644 index 00000000..8afcfca5 --- /dev/null +++ b/brandedVariable/mmraerh2o_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmraerh2o_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmraerh2o_tavg-h2m-hxy-u.json b/brandedVariable/mmraerh2o_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..fc966122 --- /dev/null +++ b/brandedVariable/mmraerh2o_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmraerh2o_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmraerh2o_tpt-h2m-hxys-u.json b/brandedVariable/mmraerh2o_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..2e22b039 --- /dev/null +++ b/brandedVariable/mmraerh2o_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmraerh2o_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrbc_tavg-al-hxy-u.json b/brandedVariable/mmrbc_tavg-al-hxy-u.json new file mode 100644 index 00000000..72b43af0 --- /dev/null +++ b/brandedVariable/mmrbc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrbc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrbc_tavg-h2m-hxy-u.json b/brandedVariable/mmrbc_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..17ed441f --- /dev/null +++ b/brandedVariable/mmrbc_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrbc_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrbc_tpt-h2m-hxys-u.json b/brandedVariable/mmrbc_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..f1891ed2 --- /dev/null +++ b/brandedVariable/mmrbc_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrbc_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrdust_tavg-al-hxy-u.json b/brandedVariable/mmrdust_tavg-al-hxy-u.json new file mode 100644 index 00000000..f8c4a2a8 --- /dev/null +++ b/brandedVariable/mmrdust_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrdust_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrdust_tavg-h2m-hxy-u.json b/brandedVariable/mmrdust_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..c5077303 --- /dev/null +++ b/brandedVariable/mmrdust_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrdust_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrdust_tpt-h2m-hxys-u.json b/brandedVariable/mmrdust_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..34d486c8 --- /dev/null +++ b/brandedVariable/mmrdust_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrdust_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrnh4_tavg-al-hxy-u.json b/brandedVariable/mmrnh4_tavg-al-hxy-u.json new file mode 100644 index 00000000..a75858d7 --- /dev/null +++ b/brandedVariable/mmrnh4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrnh4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrnh4_tavg-h2m-hxy-u.json b/brandedVariable/mmrnh4_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..a67b25ec --- /dev/null +++ b/brandedVariable/mmrnh4_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrnh4_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrnh4_tpt-h2m-hxys-u.json b/brandedVariable/mmrnh4_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..6b7f9d98 --- /dev/null +++ b/brandedVariable/mmrnh4_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrnh4_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrno3_tavg-al-hxy-u.json b/brandedVariable/mmrno3_tavg-al-hxy-u.json new file mode 100644 index 00000000..e202ae21 --- /dev/null +++ b/brandedVariable/mmrno3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrno3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrno3_tavg-h2m-hxy-u.json b/brandedVariable/mmrno3_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..b9f58c64 --- /dev/null +++ b/brandedVariable/mmrno3_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrno3_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrno3_tpt-h2m-hxys-u.json b/brandedVariable/mmrno3_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..d5feeb54 --- /dev/null +++ b/brandedVariable/mmrno3_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrno3_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmroa_tavg-al-hxy-u.json b/brandedVariable/mmroa_tavg-al-hxy-u.json new file mode 100644 index 00000000..f959a2c8 --- /dev/null +++ b/brandedVariable/mmroa_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmroa_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmroa_tavg-h2m-hxy-u.json b/brandedVariable/mmroa_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..897dcc16 --- /dev/null +++ b/brandedVariable/mmroa_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmroa_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmroa_tpt-h2m-hxys-u.json b/brandedVariable/mmroa_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..05788c5e --- /dev/null +++ b/brandedVariable/mmroa_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmroa_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrpm1_tavg-al-hxy-u.json b/brandedVariable/mmrpm1_tavg-al-hxy-u.json new file mode 100644 index 00000000..2ed5599a --- /dev/null +++ b/brandedVariable/mmrpm1_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrpm1_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrpm2p5_tavg-al-hxy-u.json b/brandedVariable/mmrpm2p5_tavg-al-hxy-u.json new file mode 100644 index 00000000..45872233 --- /dev/null +++ b/brandedVariable/mmrpm2p5_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrpm2p5_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrso4_tavg-al-hxy-u.json b/brandedVariable/mmrso4_tavg-al-hxy-u.json new file mode 100644 index 00000000..63afde5d --- /dev/null +++ b/brandedVariable/mmrso4_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrso4_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrso4_tavg-h2m-hxy-u.json b/brandedVariable/mmrso4_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..ad8a6306 --- /dev/null +++ b/brandedVariable/mmrso4_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrso4_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrso4_tpt-h2m-hxys-u.json b/brandedVariable/mmrso4_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..bfec5c07 --- /dev/null +++ b/brandedVariable/mmrso4_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrso4_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrsoa_tavg-al-hxy-u.json b/brandedVariable/mmrsoa_tavg-al-hxy-u.json new file mode 100644 index 00000000..a72d67ce --- /dev/null +++ b/brandedVariable/mmrsoa_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrsoa_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrsoa_tavg-h2m-hxy-u.json b/brandedVariable/mmrsoa_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..213d7ef7 --- /dev/null +++ b/brandedVariable/mmrsoa_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrsoa_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrss_tavg-al-hxy-u.json b/brandedVariable/mmrss_tavg-al-hxy-u.json new file mode 100644 index 00000000..819c7a47 --- /dev/null +++ b/brandedVariable/mmrss_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrss_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrss_tavg-h2m-hxy-u.json b/brandedVariable/mmrss_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..2dbf8304 --- /dev/null +++ b/brandedVariable/mmrss_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrss_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mmrss_tpt-h2m-hxys-u.json b/brandedVariable/mmrss_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..dd158030 --- /dev/null +++ b/brandedVariable/mmrss_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mmrss_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mpw_tavg-u-hxy-sea.json b/brandedVariable/mpw_tavg-u-hxy-sea.json new file mode 100644 index 00000000..e73da1f9 --- /dev/null +++ b/brandedVariable/mpw_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mpw_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mpwswell_tavg-u-hxy-sea.json b/brandedVariable/mpwswell_tavg-u-hxy-sea.json new file mode 100644 index 00000000..067d1742 --- /dev/null +++ b/brandedVariable/mpwswell_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mpwswell_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mpwwindsea_tavg-u-hxy-sea.json b/brandedVariable/mpwwindsea_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3938e6fb --- /dev/null +++ b/brandedVariable/mpwwindsea_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mpwwindsea_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrfso_tavg-u-hxy-lnd.json b/brandedVariable/mrfso_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..a0984393 --- /dev/null +++ b/brandedVariable/mrfso_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrfso_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrroLi_tavg-u-hxy-is.json b/brandedVariable/mrroLi_tavg-u-hxy-is.json new file mode 100644 index 00000000..71e28ed0 --- /dev/null +++ b/brandedVariable/mrroLi_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrroLi_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrro_tavg-u-hxy-is.json b/brandedVariable/mrro_tavg-u-hxy-is.json new file mode 100644 index 00000000..30656f65 --- /dev/null +++ b/brandedVariable/mrro_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrro_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrro_tavg-u-hxy-lnd.json b/brandedVariable/mrro_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..0d784d86 --- /dev/null +++ b/brandedVariable/mrro_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrro_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrrob_tavg-u-hxy-lnd.json b/brandedVariable/mrrob_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..751bf510 --- /dev/null +++ b/brandedVariable/mrrob_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrrob_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrros_tavg-u-hxy-lnd.json b/brandedVariable/mrros_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..42bae38d --- /dev/null +++ b/brandedVariable/mrros_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrros_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsfl_tavg-sl-hxy-lnd.json b/brandedVariable/mrsfl_tavg-sl-hxy-lnd.json new file mode 100644 index 00000000..69114191 --- /dev/null +++ b/brandedVariable/mrsfl_tavg-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsfl_tavg-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsll_tavg-sl-hxy-lnd.json b/brandedVariable/mrsll_tavg-sl-hxy-lnd.json new file mode 100644 index 00000000..c7ae9735 --- /dev/null +++ b/brandedVariable/mrsll_tavg-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsll_tavg-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrso_tavg-u-hxy-lnd.json b/brandedVariable/mrso_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4c07c687 --- /dev/null +++ b/brandedVariable/mrso_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrso_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsofc_ti-u-hxy-lnd.json b/brandedVariable/mrsofc_ti-u-hxy-lnd.json new file mode 100644 index 00000000..56c07e3d --- /dev/null +++ b/brandedVariable/mrsofc_ti-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsofc_ti-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsolLut_tavg-d10cm-hxy-multi.json b/brandedVariable/mrsolLut_tavg-d10cm-hxy-multi.json new file mode 100644 index 00000000..22a69018 --- /dev/null +++ b/brandedVariable/mrsolLut_tavg-d10cm-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsolLut_tavg-d10cm-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsol_tavg-d100cm-hxy-lnd.json b/brandedVariable/mrsol_tavg-d100cm-hxy-lnd.json new file mode 100644 index 00000000..0ea92e45 --- /dev/null +++ b/brandedVariable/mrsol_tavg-d100cm-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsol_tavg-d100cm-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsol_tavg-d10cm-hxy-lnd.json b/brandedVariable/mrsol_tavg-d10cm-hxy-lnd.json new file mode 100644 index 00000000..c14ee9d5 --- /dev/null +++ b/brandedVariable/mrsol_tavg-d10cm-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsol_tavg-d10cm-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsol_tavg-sl-hxy-lnd.json b/brandedVariable/mrsol_tavg-sl-hxy-lnd.json new file mode 100644 index 00000000..646b3cac --- /dev/null +++ b/brandedVariable/mrsol_tavg-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsol_tavg-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsol_tpt-d10cm-hxy-lnd.json b/brandedVariable/mrsol_tpt-d10cm-hxy-lnd.json new file mode 100644 index 00000000..3e521f63 --- /dev/null +++ b/brandedVariable/mrsol_tpt-d10cm-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsol_tpt-d10cm-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrsow_tavg-u-hxy-lnd.json b/brandedVariable/mrsow_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4201b3b8 --- /dev/null +++ b/brandedVariable/mrsow_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrsow_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/mrtws_tavg-u-hxy-lnd.json b/brandedVariable/mrtws_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c1df60a2 --- /dev/null +++ b/brandedVariable/mrtws_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mrtws_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftbarot_tavg-u-hxy-sea.json b/brandedVariable/msftbarot_tavg-u-hxy-sea.json new file mode 100644 index 00000000..bba67fcb --- /dev/null +++ b/brandedVariable/msftbarot_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftbarot_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftm_tavg-ol-hys-sea.json b/brandedVariable/msftm_tavg-ol-hys-sea.json new file mode 100644 index 00000000..91ef2bdb --- /dev/null +++ b/brandedVariable/msftm_tavg-ol-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftm_tavg-ol-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftm_tavg-rho-hys-sea.json b/brandedVariable/msftm_tavg-rho-hys-sea.json new file mode 100644 index 00000000..4836b33c --- /dev/null +++ b/brandedVariable/msftm_tavg-rho-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftm_tavg-rho-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftmmpa_tavg-ol-hys-sea.json b/brandedVariable/msftmmpa_tavg-ol-hys-sea.json new file mode 100644 index 00000000..e4ffac94 --- /dev/null +++ b/brandedVariable/msftmmpa_tavg-ol-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftmmpa_tavg-ol-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftmmpa_tavg-rho-hys-sea.json b/brandedVariable/msftmmpa_tavg-rho-hys-sea.json new file mode 100644 index 00000000..8e4c032a --- /dev/null +++ b/brandedVariable/msftmmpa_tavg-rho-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftmmpa_tavg-rho-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftmsmpa_tavg-ol-hys-sea.json b/brandedVariable/msftmsmpa_tavg-ol-hys-sea.json new file mode 100644 index 00000000..6da15cbc --- /dev/null +++ b/brandedVariable/msftmsmpa_tavg-ol-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftmsmpa_tavg-ol-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msfty_tavg-ol-hys-sea.json b/brandedVariable/msfty_tavg-ol-hys-sea.json new file mode 100644 index 00000000..cb4a1654 --- /dev/null +++ b/brandedVariable/msfty_tavg-ol-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msfty_tavg-ol-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msfty_tavg-rho-hys-sea.json b/brandedVariable/msfty_tavg-rho-hys-sea.json new file mode 100644 index 00000000..9d5a34b7 --- /dev/null +++ b/brandedVariable/msfty_tavg-rho-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msfty_tavg-rho-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftypa_tavg-ol-hys-sea.json b/brandedVariable/msftypa_tavg-ol-hys-sea.json new file mode 100644 index 00000000..6f010c2d --- /dev/null +++ b/brandedVariable/msftypa_tavg-ol-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftypa_tavg-ol-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/msftypa_tavg-rho-hys-sea.json b/brandedVariable/msftypa_tavg-rho-hys-sea.json new file mode 100644 index 00000000..0f38f89c --- /dev/null +++ b/brandedVariable/msftypa_tavg-rho-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "msftypa_tavg-rho-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tavg-al-hxy-u.json b/brandedVariable/n2o_tavg-al-hxy-u.json new file mode 100644 index 00000000..e2784242 --- /dev/null +++ b/brandedVariable/n2o_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tavg-p19-hxy-air.json b/brandedVariable/n2o_tavg-p19-hxy-air.json new file mode 100644 index 00000000..33496399 --- /dev/null +++ b/brandedVariable/n2o_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tavg-p39-hy-air.json b/brandedVariable/n2o_tavg-p39-hy-air.json new file mode 100644 index 00000000..f9058527 --- /dev/null +++ b/brandedVariable/n2o_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tavg-u-hm-u.json b/brandedVariable/n2o_tavg-u-hm-u.json new file mode 100644 index 00000000..0e59f572 --- /dev/null +++ b/brandedVariable/n2o_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tclm-p19-hxy-air.json b/brandedVariable/n2o_tclm-p19-hxy-air.json new file mode 100644 index 00000000..2ce1eee7 --- /dev/null +++ b/brandedVariable/n2o_tclm-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tclm-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/n2o_tclm-u-hm-u.json b/brandedVariable/n2o_tclm-u-hm-u.json new file mode 100644 index 00000000..d3fa9352 --- /dev/null +++ b/brandedVariable/n2o_tclm-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "n2o_tclm-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLand_tavg-u-hxy-lnd.json b/brandedVariable/nLand_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..52412962 --- /dev/null +++ b/brandedVariable/nLand_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLand_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLeaf_tavg-u-hxy-lnd.json b/brandedVariable/nLeaf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..6672db2b --- /dev/null +++ b/brandedVariable/nLeaf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLeaf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLitterCwd_tavg-u-hxy-lnd.json b/brandedVariable/nLitterCwd_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..46dea160 --- /dev/null +++ b/brandedVariable/nLitterCwd_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLitterCwd_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLitterSubSurf_tavg-u-hxy-lnd.json b/brandedVariable/nLitterSubSurf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..7dd772cf --- /dev/null +++ b/brandedVariable/nLitterSubSurf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLitterSubSurf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLitterSurf_tavg-u-hxy-lnd.json b/brandedVariable/nLitterSurf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8a920b4d --- /dev/null +++ b/brandedVariable/nLitterSurf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLitterSurf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nLitter_tavg-u-hxy-lnd.json b/brandedVariable/nLitter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3388a64c --- /dev/null +++ b/brandedVariable/nLitter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nLitter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nMineralNH4_tavg-u-hxy-lnd.json b/brandedVariable/nMineralNH4_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..0e20128c --- /dev/null +++ b/brandedVariable/nMineralNH4_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nMineralNH4_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nMineralNO3_tavg-u-hxy-lnd.json b/brandedVariable/nMineralNO3_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2bec54ed --- /dev/null +++ b/brandedVariable/nMineralNO3_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nMineralNO3_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nMineral_tavg-u-hxy-lnd.json b/brandedVariable/nMineral_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..55ad89ce --- /dev/null +++ b/brandedVariable/nMineral_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nMineral_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nOther_tavg-u-hxy-lnd.json b/brandedVariable/nOther_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..08172a43 --- /dev/null +++ b/brandedVariable/nOther_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nOther_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nProduct_tavg-u-hxy-lnd.json b/brandedVariable/nProduct_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c8ab3147 --- /dev/null +++ b/brandedVariable/nProduct_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nProduct_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nRoot_tavg-u-hxy-lnd.json b/brandedVariable/nRoot_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..73aa6d16 --- /dev/null +++ b/brandedVariable/nRoot_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nRoot_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nSoil_tavg-u-hxy-lnd.json b/brandedVariable/nSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..ab1b6906 --- /dev/null +++ b/brandedVariable/nSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nStem_tavg-u-hxy-lnd.json b/brandedVariable/nStem_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..e1963e7b --- /dev/null +++ b/brandedVariable/nStem_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nStem_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nVeg_tavg-u-hxy-lnd.json b/brandedVariable/nVeg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..890037be --- /dev/null +++ b/brandedVariable/nVeg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nVeg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nbp_tavg-u-hxy-lnd.json b/brandedVariable/nbp_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..71d2796e --- /dev/null +++ b/brandedVariable/nbp_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nbp_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ncfc22_tavg-u-hm-u.json b/brandedVariable/ncfc22_tavg-u-hm-u.json new file mode 100644 index 00000000..73cfb20a --- /dev/null +++ b/brandedVariable/ncfc22_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ncfc22_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/necbLut_tavg-u-hxy-multi.json b/brandedVariable/necbLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..862490e1 --- /dev/null +++ b/brandedVariable/necbLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "necbLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nep_tavg-u-hxy-lnd.json b/brandedVariable/nep_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8243cffc --- /dev/null +++ b/brandedVariable/nep_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nep_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/netAtmosLandC13Flux_tavg-u-hxy-lnd.json b/brandedVariable/netAtmosLandC13Flux_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..7112ed04 --- /dev/null +++ b/brandedVariable/netAtmosLandC13Flux_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "netAtmosLandC13Flux_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/netAtmosLandC14Flux_tavg-u-hxy-lnd.json b/brandedVariable/netAtmosLandC14Flux_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..1e17a542 --- /dev/null +++ b/brandedVariable/netAtmosLandC14Flux_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "netAtmosLandC14Flux_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/netAtmosLandCO2Flux_tavg-u-hxy-lnd.json b/brandedVariable/netAtmosLandCO2Flux_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3cc76f71 --- /dev/null +++ b/brandedVariable/netAtmosLandCO2Flux_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "netAtmosLandCO2Flux_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nh4_tavg-d0m-hxy-sea.json b/brandedVariable/nh4_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..a8aa15d9 --- /dev/null +++ b/brandedVariable/nh4_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nh4_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nh4_tavg-ol-hxy-sea.json b/brandedVariable/nh4_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..284ab144 --- /dev/null +++ b/brandedVariable/nh4_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nh4_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nh50_tavg-al-hxy-u.json b/brandedVariable/nh50_tavg-al-hxy-u.json new file mode 100644 index 00000000..a7164477 --- /dev/null +++ b/brandedVariable/nh50_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nh50_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/no2_tavg-al-hxy-u.json b/brandedVariable/no2_tavg-al-hxy-u.json new file mode 100644 index 00000000..0a37de39 --- /dev/null +++ b/brandedVariable/no2_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "no2_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/no2_tavg-h2m-hxy-u.json b/brandedVariable/no2_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..b734210b --- /dev/null +++ b/brandedVariable/no2_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "no2_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/no3_tavg-d0m-hxy-sea.json b/brandedVariable/no3_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..19834458 --- /dev/null +++ b/brandedVariable/no3_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "no3_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/no3_tavg-ol-hxy-sea.json b/brandedVariable/no3_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..e8bf0946 --- /dev/null +++ b/brandedVariable/no3_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "no3_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/no_tavg-al-hxy-u.json b/brandedVariable/no_tavg-al-hxy-u.json new file mode 100644 index 00000000..0b6b10d4 --- /dev/null +++ b/brandedVariable/no_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "no_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/noaahi2m_tavg-h2m-hxy-u.json b/brandedVariable/noaahi2m_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..5e1a8cf2 --- /dev/null +++ b/brandedVariable/noaahi2m_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "noaahi2m_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/noaahi2m_tmax-h2m-hxy-u.json b/brandedVariable/noaahi2m_tmax-h2m-hxy-u.json new file mode 100644 index 00000000..e0f306eb --- /dev/null +++ b/brandedVariable/noaahi2m_tmax-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "noaahi2m_tmax-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/noy_tavg-p39-hy-air.json b/brandedVariable/noy_tavg-p39-hy-air.json new file mode 100644 index 00000000..422e5520 --- /dev/null +++ b/brandedVariable/noy_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "noy_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppLeaf_tavg-u-hxy-lnd.json b/brandedVariable/nppLeaf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2b180957 --- /dev/null +++ b/brandedVariable/nppLeaf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppLeaf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppLut_tavg-u-hxy-multi.json b/brandedVariable/nppLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..309d5975 --- /dev/null +++ b/brandedVariable/nppLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppOther_tavg-u-hxy-lnd.json b/brandedVariable/nppOther_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..9ba42517 --- /dev/null +++ b/brandedVariable/nppOther_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppOther_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppRoot_tavg-u-hxy-lnd.json b/brandedVariable/nppRoot_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..9b03b164 --- /dev/null +++ b/brandedVariable/nppRoot_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppRoot_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppStem_tavg-u-hxy-lnd.json b/brandedVariable/nppStem_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8eae59bc --- /dev/null +++ b/brandedVariable/nppStem_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppStem_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/nppVgt_tavg-u-hxy-multi.json b/brandedVariable/nppVgt_tavg-u-hxy-multi.json new file mode 100644 index 00000000..38cbc497 --- /dev/null +++ b/brandedVariable/nppVgt_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "nppVgt_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/npp_tavg-u-hxy-lnd.json b/brandedVariable/npp_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..d7ea09bb --- /dev/null +++ b/brandedVariable/npp_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "npp_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/npp_tavg-u-hxy-ng.json b/brandedVariable/npp_tavg-u-hxy-ng.json new file mode 100644 index 00000000..1ea1ea0a --- /dev/null +++ b/brandedVariable/npp_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "npp_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/npp_tavg-u-hxy-shb.json b/brandedVariable/npp_tavg-u-hxy-shb.json new file mode 100644 index 00000000..65f0623d --- /dev/null +++ b/brandedVariable/npp_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "npp_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/npp_tavg-u-hxy-tree.json b/brandedVariable/npp_tavg-u-hxy-tree.json new file mode 100644 index 00000000..382c8f41 --- /dev/null +++ b/brandedVariable/npp_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "npp_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o2_tavg-d0m-hxy-sea.json b/brandedVariable/o2_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..1b6b48c5 --- /dev/null +++ b/brandedVariable/o2_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o2_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o2_tavg-ol-hxy-sea.json b/brandedVariable/o2_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d5309bd5 --- /dev/null +++ b/brandedVariable/o2_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o2_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o2_tavg-op20bar-hxy-sea.json b/brandedVariable/o2_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..5907a80b --- /dev/null +++ b/brandedVariable/o2_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o2_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o2min_tavg-u-hxy-sea.json b/brandedVariable/o2min_tavg-u-hxy-sea.json new file mode 100644 index 00000000..cf16e9bf --- /dev/null +++ b/brandedVariable/o2min_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o2min_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o2sat_tavg-ol-hxy-sea.json b/brandedVariable/o2sat_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..571e2378 --- /dev/null +++ b/brandedVariable/o2sat_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o2sat_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tavg-al-hxy-u.json b/brandedVariable/o3_tavg-al-hxy-u.json new file mode 100644 index 00000000..122c1e03 --- /dev/null +++ b/brandedVariable/o3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tavg-h2m-hxy-u.json b/brandedVariable/o3_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..c854c189 --- /dev/null +++ b/brandedVariable/o3_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tavg-p19-hxy-air.json b/brandedVariable/o3_tavg-p19-hxy-air.json new file mode 100644 index 00000000..d56f895a --- /dev/null +++ b/brandedVariable/o3_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tavg-p39-hy-air.json b/brandedVariable/o3_tavg-p39-hy-air.json new file mode 100644 index 00000000..f25557d1 --- /dev/null +++ b/brandedVariable/o3_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tclm-p19-hxy-air.json b/brandedVariable/o3_tclm-p19-hxy-air.json new file mode 100644 index 00000000..cd78b835 --- /dev/null +++ b/brandedVariable/o3_tclm-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tclm-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tmax-h2m-hxy-u.json b/brandedVariable/o3_tmax-h2m-hxy-u.json new file mode 100644 index 00000000..eff242e4 --- /dev/null +++ b/brandedVariable/o3_tmax-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tmax-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3_tpt-al-hxy-u.json b/brandedVariable/o3_tpt-al-hxy-u.json new file mode 100644 index 00000000..824b5ada --- /dev/null +++ b/brandedVariable/o3_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3loss_tavg-al-hxy-u.json b/brandedVariable/o3loss_tavg-al-hxy-u.json new file mode 100644 index 00000000..df822194 --- /dev/null +++ b/brandedVariable/o3loss_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3loss_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3prod_tavg-al-hxy-u.json b/brandedVariable/o3prod_tavg-al-hxy-u.json new file mode 100644 index 00000000..3d89ca8c --- /dev/null +++ b/brandedVariable/o3prod_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3prod_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3ref_tclm-al-hxy-u.json b/brandedVariable/o3ref_tclm-al-hxy-u.json new file mode 100644 index 00000000..d6933e55 --- /dev/null +++ b/brandedVariable/o3ref_tclm-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3ref_tclm-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3ref_ti-al-hxy-u.json b/brandedVariable/o3ref_ti-al-hxy-u.json new file mode 100644 index 00000000..33bfffd7 --- /dev/null +++ b/brandedVariable/o3ref_ti-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3ref_ti-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/o3ste_tavg-al-hxy-u.json b/brandedVariable/o3ste_tavg-al-hxy-u.json new file mode 100644 index 00000000..ca440eee --- /dev/null +++ b/brandedVariable/o3ste_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "o3ste_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/obvfsq_tavg-ol-hxy-sea.json b/brandedVariable/obvfsq_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..1bf637df --- /dev/null +++ b/brandedVariable/obvfsq_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "obvfsq_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocfriver_tavg-u-hxy-sea.json b/brandedVariable/ocfriver_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d7f49f94 --- /dev/null +++ b/brandedVariable/ocfriver_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocfriver_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontempdiff_tavg-ol-hxy-sea.json b/brandedVariable/ocontempdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..fe306962 --- /dev/null +++ b/brandedVariable/ocontempdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontempdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontempmint_tavg-u-hxy-sea.json b/brandedVariable/ocontempmint_tavg-u-hxy-sea.json new file mode 100644 index 00000000..89adb344 --- /dev/null +++ b/brandedVariable/ocontempmint_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontempmint_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontemppadvect_tavg-ol-hxy-sea.json b/brandedVariable/ocontemppadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..c8d093a6 --- /dev/null +++ b/brandedVariable/ocontemppadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontemppadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontemppmdiff_tavg-ol-hxy-sea.json b/brandedVariable/ocontemppmdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..38eb9fa2 --- /dev/null +++ b/brandedVariable/ocontemppmdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontemppmdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontemppsmadvect_tavg-ol-hxy-sea.json b/brandedVariable/ocontemppsmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..c0cad131 --- /dev/null +++ b/brandedVariable/ocontemppsmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontemppsmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontemprmadvect_tavg-ol-hxy-sea.json b/brandedVariable/ocontemprmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..9dbd08f4 --- /dev/null +++ b/brandedVariable/ocontemprmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontemprmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ocontemptend_tavg-ol-hxy-sea.json b/brandedVariable/ocontemptend_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..6146426d --- /dev/null +++ b/brandedVariable/ocontemptend_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocontemptend_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od443aer_tavg-u-hxy-u.json b/brandedVariable/od443aer_tavg-u-hxy-u.json new file mode 100644 index 00000000..03210629 --- /dev/null +++ b/brandedVariable/od443aer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od443aer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550aer_tavg-u-hxy-u.json b/brandedVariable/od550aer_tavg-u-hxy-u.json new file mode 100644 index 00000000..bfc9366b --- /dev/null +++ b/brandedVariable/od550aer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550aer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550aerh2o_tavg-u-hxy-u.json b/brandedVariable/od550aerh2o_tavg-u-hxy-u.json new file mode 100644 index 00000000..9bb55533 --- /dev/null +++ b/brandedVariable/od550aerh2o_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550aerh2o_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550bb_tavg-u-hxy-u.json b/brandedVariable/od550bb_tavg-u-hxy-u.json new file mode 100644 index 00000000..819f185c --- /dev/null +++ b/brandedVariable/od550bb_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550bb_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550bc_tavg-u-hxy-u.json b/brandedVariable/od550bc_tavg-u-hxy-u.json new file mode 100644 index 00000000..d370be80 --- /dev/null +++ b/brandedVariable/od550bc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550bc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550csaer_tavg-u-hxy-u.json b/brandedVariable/od550csaer_tavg-u-hxy-u.json new file mode 100644 index 00000000..8bd485ed --- /dev/null +++ b/brandedVariable/od550csaer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550csaer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550dust_tavg-u-hxy-u.json b/brandedVariable/od550dust_tavg-u-hxy-u.json new file mode 100644 index 00000000..1d64f681 --- /dev/null +++ b/brandedVariable/od550dust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550dust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550lt1aer_tavg-u-hxy-u.json b/brandedVariable/od550lt1aer_tavg-u-hxy-u.json new file mode 100644 index 00000000..09c0dbed --- /dev/null +++ b/brandedVariable/od550lt1aer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550lt1aer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550no3_tavg-u-hxy-u.json b/brandedVariable/od550no3_tavg-u-hxy-u.json new file mode 100644 index 00000000..1dd705bc --- /dev/null +++ b/brandedVariable/od550no3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550no3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550oa_tavg-u-hxy-u.json b/brandedVariable/od550oa_tavg-u-hxy-u.json new file mode 100644 index 00000000..c38c8c6a --- /dev/null +++ b/brandedVariable/od550oa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550oa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550so4_tavg-u-hxy-u.json b/brandedVariable/od550so4_tavg-u-hxy-u.json new file mode 100644 index 00000000..3812d96a --- /dev/null +++ b/brandedVariable/od550so4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550so4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550soa_tavg-u-hxy-u.json b/brandedVariable/od550soa_tavg-u-hxy-u.json new file mode 100644 index 00000000..e8008183 --- /dev/null +++ b/brandedVariable/od550soa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550soa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od550ss_tavg-u-hxy-u.json b/brandedVariable/od550ss_tavg-u-hxy-u.json new file mode 100644 index 00000000..effaf858 --- /dev/null +++ b/brandedVariable/od550ss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od550ss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/od865aer_tavg-u-hxy-u.json b/brandedVariable/od865aer_tavg-u-hxy-u.json new file mode 100644 index 00000000..c682453b --- /dev/null +++ b/brandedVariable/od865aer_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "od865aer_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/oh_tavg-al-hxy-u.json b/brandedVariable/oh_tavg-al-hxy-u.json new file mode 100644 index 00000000..af1f99ba --- /dev/null +++ b/brandedVariable/oh_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "oh_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/oh_tavg-p39-hy-air.json b/brandedVariable/oh_tavg-p39-hy-air.json new file mode 100644 index 00000000..b88c59ca --- /dev/null +++ b/brandedVariable/oh_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "oh_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottempdiff_tavg-ol-hxy-sea.json b/brandedVariable/opottempdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..afd77ad5 --- /dev/null +++ b/brandedVariable/opottempdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottempdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottempmint_tavg-u-hxy-sea.json b/brandedVariable/opottempmint_tavg-u-hxy-sea.json new file mode 100644 index 00000000..72f6973c --- /dev/null +++ b/brandedVariable/opottempmint_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottempmint_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottemppadvect_tavg-ol-hxy-sea.json b/brandedVariable/opottemppadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..bd78a8e3 --- /dev/null +++ b/brandedVariable/opottemppadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottemppadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottemppmdiff_tavg-ol-hxy-sea.json b/brandedVariable/opottemppmdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..ae931179 --- /dev/null +++ b/brandedVariable/opottemppmdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottemppmdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottemppsmadvect_tavg-ol-hxy-sea.json b/brandedVariable/opottemppsmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d3d4f512 --- /dev/null +++ b/brandedVariable/opottemppsmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottemppsmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottemprmadvect_tavg-ol-hxy-sea.json b/brandedVariable/opottemprmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..e9e7010d --- /dev/null +++ b/brandedVariable/opottemprmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottemprmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/opottemptend_tavg-ol-hxy-sea.json b/brandedVariable/opottemptend_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..1d451d73 --- /dev/null +++ b/brandedVariable/opottemptend_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "opottemptend_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/orog_tavg-u-hxy-is.json b/brandedVariable/orog_tavg-u-hxy-is.json new file mode 100644 index 00000000..dcc5ff9b --- /dev/null +++ b/brandedVariable/orog_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "orog_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/orog_ti-u-hxy-u.json b/brandedVariable/orog_ti-u-hxy-u.json new file mode 100644 index 00000000..eae8528b --- /dev/null +++ b/brandedVariable/orog_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "orog_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osaltdiff_tavg-ol-hxy-sea.json b/brandedVariable/osaltdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d168273e --- /dev/null +++ b/brandedVariable/osaltdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osaltdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osaltpadvect_tavg-ol-hxy-sea.json b/brandedVariable/osaltpadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..ed66a045 --- /dev/null +++ b/brandedVariable/osaltpadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osaltpadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osaltpmdiff_tavg-ol-hxy-sea.json b/brandedVariable/osaltpmdiff_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..7314ffc0 --- /dev/null +++ b/brandedVariable/osaltpmdiff_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osaltpmdiff_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osaltpsmadvect_tavg-ol-hxy-sea.json b/brandedVariable/osaltpsmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..f9faed98 --- /dev/null +++ b/brandedVariable/osaltpsmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osaltpsmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osaltrmadvect_tavg-ol-hxy-sea.json b/brandedVariable/osaltrmadvect_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..63adf6eb --- /dev/null +++ b/brandedVariable/osaltrmadvect_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osaltrmadvect_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/osalttend_tavg-ol-hxy-sea.json b/brandedVariable/osalttend_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..0e1021f3 --- /dev/null +++ b/brandedVariable/osalttend_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "osalttend_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pan_tavg-al-hxy-u.json b/brandedVariable/pan_tavg-al-hxy-u.json new file mode 100644 index 00000000..9e114ebd --- /dev/null +++ b/brandedVariable/pan_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pan_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/parasolRefl_tavg-u-hxy-sea.json b/brandedVariable/parasolRefl_tavg-u-hxy-sea.json new file mode 100644 index 00000000..1eeb4de4 --- /dev/null +++ b/brandedVariable/parasolRefl_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "parasolRefl_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pastureFracC3_tavg-u-hxy-u.json b/brandedVariable/pastureFracC3_tavg-u-hxy-u.json new file mode 100644 index 00000000..75850da6 --- /dev/null +++ b/brandedVariable/pastureFracC3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pastureFracC3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pastureFracC4_tavg-u-hxy-u.json b/brandedVariable/pastureFracC4_tavg-u-hxy-u.json new file mode 100644 index 00000000..13ac4fc0 --- /dev/null +++ b/brandedVariable/pastureFracC4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pastureFracC4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pastureFrac_tavg-u-hxy-u.json b/brandedVariable/pastureFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..be152897 --- /dev/null +++ b/brandedVariable/pastureFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pastureFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pbo_tavg-u-hxy-sea.json b/brandedVariable/pbo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..8fb38f74 --- /dev/null +++ b/brandedVariable/pbo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pbo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pctisccp_tavg-u-hxy-cl.json b/brandedVariable/pctisccp_tavg-u-hxy-cl.json new file mode 100644 index 00000000..7a074dfb --- /dev/null +++ b/brandedVariable/pctisccp_tavg-u-hxy-cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pctisccp_tavg-u-hxy-cl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pflw_tavg-u-hxy-lnd.json b/brandedVariable/pflw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..0c740af9 --- /dev/null +++ b/brandedVariable/pflw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pflw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pfscint_tavg-op4-hxy-sea.json b/brandedVariable/pfscint_tavg-op4-hxy-sea.json new file mode 100644 index 00000000..83714d59 --- /dev/null +++ b/brandedVariable/pfscint_tavg-op4-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pfscint_tavg-op4-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pfull_tavg-al-hxy-u.json b/brandedVariable/pfull_tavg-al-hxy-u.json new file mode 100644 index 00000000..a606edac --- /dev/null +++ b/brandedVariable/pfull_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pfull_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pfull_tclm-al-hxy-u.json b/brandedVariable/pfull_tclm-al-hxy-u.json new file mode 100644 index 00000000..733af83e --- /dev/null +++ b/brandedVariable/pfull_tclm-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pfull_tclm-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pfull_tpt-al-hxy-u.json b/brandedVariable/pfull_tpt-al-hxy-u.json new file mode 100644 index 00000000..437f0f3e --- /dev/null +++ b/brandedVariable/pfull_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pfull_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pfull_tpt-al-hxys-u.json b/brandedVariable/pfull_tpt-al-hxys-u.json new file mode 100644 index 00000000..59243519 --- /dev/null +++ b/brandedVariable/pfull_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pfull_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ph_tavg-d0m-hxy-sea.json b/brandedVariable/ph_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..b271428a --- /dev/null +++ b/brandedVariable/ph_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ph_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ph_tavg-ol-hxy-sea.json b/brandedVariable/ph_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..be639dc7 --- /dev/null +++ b/brandedVariable/ph_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ph_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ph_tavg-op20bar-hxy-sea.json b/brandedVariable/ph_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..6cebd936 --- /dev/null +++ b/brandedVariable/ph_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ph_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phalf_tavg-alh-hxy-u.json b/brandedVariable/phalf_tavg-alh-hxy-u.json new file mode 100644 index 00000000..6feccbdd --- /dev/null +++ b/brandedVariable/phalf_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phalf_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phalf_tclm-alh-hxy-u.json b/brandedVariable/phalf_tclm-alh-hxy-u.json new file mode 100644 index 00000000..f5b72900 --- /dev/null +++ b/brandedVariable/phalf_tclm-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phalf_tclm-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phalf_tpt-alh-hxys-u.json b/brandedVariable/phalf_tpt-alh-hxys-u.json new file mode 100644 index 00000000..5462fa33 --- /dev/null +++ b/brandedVariable/phalf_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phalf_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phcint_tavg-op4-hxy-sea.json b/brandedVariable/phcint_tavg-op4-hxy-sea.json new file mode 100644 index 00000000..fc97c784 --- /dev/null +++ b/brandedVariable/phcint_tavg-op4-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phcint_tavg-op4-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/photo1d_tavg-al-hxy-u.json b/brandedVariable/photo1d_tavg-al-hxy-u.json new file mode 100644 index 00000000..d63c2429 --- /dev/null +++ b/brandedVariable/photo1d_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "photo1d_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phyc_tavg-d0m-hxy-sea.json b/brandedVariable/phyc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..c39ef17c --- /dev/null +++ b/brandedVariable/phyc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phyc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phyc_tavg-ol-hxy-sea.json b/brandedVariable/phyc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..27a04aba --- /dev/null +++ b/brandedVariable/phyc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phyc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phyc_tavg-op20bar-hxy-sea.json b/brandedVariable/phyc_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..2ddb1f73 --- /dev/null +++ b/brandedVariable/phyc_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phyc_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phycalc_tavg-d0m-hxy-sea.json b/brandedVariable/phycalc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..e4f925ae --- /dev/null +++ b/brandedVariable/phycalc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phycalc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phycalc_tavg-ol-hxy-sea.json b/brandedVariable/phycalc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..82320b9e --- /dev/null +++ b/brandedVariable/phycalc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phycalc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiat_tavg-d0m-hxy-sea.json b/brandedVariable/phydiat_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..af35859a --- /dev/null +++ b/brandedVariable/phydiat_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiat_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiat_tavg-ol-hxy-sea.json b/brandedVariable/phydiat_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..1628a24d --- /dev/null +++ b/brandedVariable/phydiat_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiat_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiatos_tavg-d0m-hxy-sea.json b/brandedVariable/phydiatos_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..f17757c5 --- /dev/null +++ b/brandedVariable/phydiatos_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiatos_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiaz_tavg-d0m-hxy-sea.json b/brandedVariable/phydiaz_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..a11f488a --- /dev/null +++ b/brandedVariable/phydiaz_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiaz_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiaz_tavg-ol-hxy-sea.json b/brandedVariable/phydiaz_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..16a5dd34 --- /dev/null +++ b/brandedVariable/phydiaz_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiaz_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phydiazos_tavg-d0m-hxy-sea.json b/brandedVariable/phydiazos_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..dc1160a5 --- /dev/null +++ b/brandedVariable/phydiazos_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phydiazos_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phymisc_tavg-d0m-hxy-sea.json b/brandedVariable/phymisc_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..83328ccf --- /dev/null +++ b/brandedVariable/phymisc_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phymisc_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phymisc_tavg-ol-hxy-sea.json b/brandedVariable/phymisc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..20fd0f7d --- /dev/null +++ b/brandedVariable/phymisc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phymisc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phynano_tavg-u-hxy-sea.json b/brandedVariable/phynano_tavg-u-hxy-sea.json new file mode 100644 index 00000000..85f98ad9 --- /dev/null +++ b/brandedVariable/phynano_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phynano_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phypico_tavg-d0m-hxy-sea.json b/brandedVariable/phypico_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..44c416e7 --- /dev/null +++ b/brandedVariable/phypico_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phypico_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/phypico_tavg-ol-hxy-sea.json b/brandedVariable/phypico_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..199cba88 --- /dev/null +++ b/brandedVariable/phypico_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "phypico_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/po4_tavg-ol-hxy-sea.json b/brandedVariable/po4_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..e4adf6f5 --- /dev/null +++ b/brandedVariable/po4_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "po4_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pod0_tsum-u-hxy-u.json b/brandedVariable/pod0_tsum-u-hxy-u.json new file mode 100644 index 00000000..e7075c32 --- /dev/null +++ b/brandedVariable/pod0_tsum-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pod0_tsum-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pp_tavg-d0m-hxy-sea.json b/brandedVariable/pp_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..30f55818 --- /dev/null +++ b/brandedVariable/pp_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pp_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pp_tavg-ol-hxy-sea.json b/brandedVariable/pp_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..122dccc6 --- /dev/null +++ b/brandedVariable/pp_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pp_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr17O_tavg-u-hxy-u.json b/brandedVariable/pr17O_tavg-u-hxy-u.json new file mode 100644 index 00000000..c9ad3b6a --- /dev/null +++ b/brandedVariable/pr17O_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr17O_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr18O_tavg-u-hxy-u.json b/brandedVariable/pr18O_tavg-u-hxy-u.json new file mode 100644 index 00000000..210707c6 --- /dev/null +++ b/brandedVariable/pr18O_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr18O_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr2h_tavg-u-hxy-u.json b/brandedVariable/pr2h_tavg-u-hxy-u.json new file mode 100644 index 00000000..4fd3b775 --- /dev/null +++ b/brandedVariable/pr2h_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr2h_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr_tavg-u-hxy-crp.json b/brandedVariable/pr_tavg-u-hxy-crp.json new file mode 100644 index 00000000..c3bf0685 --- /dev/null +++ b/brandedVariable/pr_tavg-u-hxy-crp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr_tavg-u-hxy-crp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr_tavg-u-hxy-u.json b/brandedVariable/pr_tavg-u-hxy-u.json new file mode 100644 index 00000000..1fcd6b9d --- /dev/null +++ b/brandedVariable/pr_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr_tmax-u-hxy-u.json b/brandedVariable/pr_tmax-u-hxy-u.json new file mode 100644 index 00000000..966dc8d3 --- /dev/null +++ b/brandedVariable/pr_tmax-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr_tmax-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr_tpt-u-hxy-u.json b/brandedVariable/pr_tpt-u-hxy-u.json new file mode 100644 index 00000000..52f9089c --- /dev/null +++ b/brandedVariable/pr_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pr_tpt-u-hxys-u.json b/brandedVariable/pr_tpt-u-hxys-u.json new file mode 100644 index 00000000..9848d7e7 --- /dev/null +++ b/brandedVariable/pr_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pr_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prc_tavg-u-hxy-u.json b/brandedVariable/prc_tavg-u-hxy-u.json new file mode 100644 index 00000000..07368f75 --- /dev/null +++ b/brandedVariable/prc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prc_tpt-u-hxys-u.json b/brandedVariable/prc_tpt-u-hxys-u.json new file mode 100644 index 00000000..16abd5b5 --- /dev/null +++ b/brandedVariable/prc_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prc_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prra_tavg-u-hxy-is.json b/brandedVariable/prra_tavg-u-hxy-is.json new file mode 100644 index 00000000..ad487a27 --- /dev/null +++ b/brandedVariable/prra_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prra_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prra_tavg-u-hxy-lnd.json b/brandedVariable/prra_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..c77f24ac --- /dev/null +++ b/brandedVariable/prra_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prra_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prra_tavg-u-hxy-si.json b/brandedVariable/prra_tavg-u-hxy-si.json new file mode 100644 index 00000000..1e9f9568 --- /dev/null +++ b/brandedVariable/prra_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prra_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prra_tavg-u-hxy-u.json b/brandedVariable/prra_tavg-u-hxy-u.json new file mode 100644 index 00000000..c6909664 --- /dev/null +++ b/brandedVariable/prra_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prra_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prrsn_tavg-u-hxy-lnd.json b/brandedVariable/prrsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..51b11e5c --- /dev/null +++ b/brandedVariable/prrsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prrsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn18O_tavg-u-hxy-u.json b/brandedVariable/prsn18O_tavg-u-hxy-u.json new file mode 100644 index 00000000..375271b8 --- /dev/null +++ b/brandedVariable/prsn18O_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn18O_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn2h_tavg-u-hxy-u.json b/brandedVariable/prsn2h_tavg-u-hxy-u.json new file mode 100644 index 00000000..85970a34 --- /dev/null +++ b/brandedVariable/prsn2h_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn2h_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn_tavg-u-hxy-is.json b/brandedVariable/prsn_tavg-u-hxy-is.json new file mode 100644 index 00000000..e9504e21 --- /dev/null +++ b/brandedVariable/prsn_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn_tavg-u-hxy-si.json b/brandedVariable/prsn_tavg-u-hxy-si.json new file mode 100644 index 00000000..e94c142a --- /dev/null +++ b/brandedVariable/prsn_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn_tavg-u-hxy-u.json b/brandedVariable/prsn_tavg-u-hxy-u.json new file mode 100644 index 00000000..af2d5abf --- /dev/null +++ b/brandedVariable/prsn_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsn_tpt-u-hxys-u.json b/brandedVariable/prsn_tpt-u-hxys-u.json new file mode 100644 index 00000000..62ed4a54 --- /dev/null +++ b/brandedVariable/prsn_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsn_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsnc_tavg-u-hxy-lnd.json b/brandedVariable/prsnc_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..4cc71f83 --- /dev/null +++ b/brandedVariable/prsnc_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsnc_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prsnsn_tavg-u-hxy-lnd.json b/brandedVariable/prsnsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..59ad86fc --- /dev/null +++ b/brandedVariable/prsnsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prsnsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prveg_tavg-u-hxy-lnd.json b/brandedVariable/prveg_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..faace755 --- /dev/null +++ b/brandedVariable/prveg_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prveg_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prw_tavg-u-hxy-u.json b/brandedVariable/prw_tavg-u-hxy-u.json new file mode 100644 index 00000000..7d7d401b --- /dev/null +++ b/brandedVariable/prw_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prw_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prw_tpt-u-hxy-u.json b/brandedVariable/prw_tpt-u-hxy-u.json new file mode 100644 index 00000000..17fff116 --- /dev/null +++ b/brandedVariable/prw_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prw_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/prw_tpt-u-hxys-u.json b/brandedVariable/prw_tpt-u-hxys-u.json new file mode 100644 index 00000000..1a1a4245 --- /dev/null +++ b/brandedVariable/prw_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "prw_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ps_tavg-u-hxy-u.json b/brandedVariable/ps_tavg-u-hxy-u.json new file mode 100644 index 00000000..67f6ded5 --- /dev/null +++ b/brandedVariable/ps_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ps_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ps_tpt-u-hxy-u.json b/brandedVariable/ps_tpt-u-hxy-u.json new file mode 100644 index 00000000..70e6c277 --- /dev/null +++ b/brandedVariable/ps_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ps_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ps_tpt-u-hxys-u.json b/brandedVariable/ps_tpt-u-hxys-u.json new file mode 100644 index 00000000..652de1ab --- /dev/null +++ b/brandedVariable/ps_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ps_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/psitem_tavg-p39-hy-air.json b/brandedVariable/psitem_tavg-p39-hy-air.json new file mode 100644 index 00000000..d1a132c5 --- /dev/null +++ b/brandedVariable/psitem_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "psitem_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/psl_tavg-u-hxy-u.json b/brandedVariable/psl_tavg-u-hxy-u.json new file mode 100644 index 00000000..dd0a3b87 --- /dev/null +++ b/brandedVariable/psl_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "psl_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/psl_tpt-u-hxy-u.json b/brandedVariable/psl_tpt-u-hxy-u.json new file mode 100644 index 00000000..958e04f1 --- /dev/null +++ b/brandedVariable/psl_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "psl_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/psl_tpt-u-hxys-u.json b/brandedVariable/psl_tpt-u-hxys-u.json new file mode 100644 index 00000000..f115bbd6 --- /dev/null +++ b/brandedVariable/psl_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "psl_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/pso_tavg-u-hxy-sea.json b/brandedVariable/pso_tavg-u-hxy-sea.json new file mode 100644 index 00000000..702f229a --- /dev/null +++ b/brandedVariable/pso_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "pso_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ptp_tavg-u-hxy-u.json b/brandedVariable/ptp_tavg-u-hxy-u.json new file mode 100644 index 00000000..d42d1369 --- /dev/null +++ b/brandedVariable/ptp_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ptp_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/qgwr_tavg-u-hxy-lnd.json b/brandedVariable/qgwr_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..362a9921 --- /dev/null +++ b/brandedVariable/qgwr_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "qgwr_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raLeaf_tavg-u-hxy-lnd.json b/brandedVariable/raLeaf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..757541fb --- /dev/null +++ b/brandedVariable/raLeaf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raLeaf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raLut_tavg-u-hxy-multi.json b/brandedVariable/raLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..30cb30d8 --- /dev/null +++ b/brandedVariable/raLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raOther_tavg-u-hxy-lnd.json b/brandedVariable/raOther_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..30129e1f --- /dev/null +++ b/brandedVariable/raOther_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raOther_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raRoot_tavg-u-hxy-lnd.json b/brandedVariable/raRoot_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8f2b1b41 --- /dev/null +++ b/brandedVariable/raRoot_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raRoot_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raStem_tavg-u-hxy-lnd.json b/brandedVariable/raStem_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..8b4e38f6 --- /dev/null +++ b/brandedVariable/raStem_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raStem_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/raVgt_tavg-u-hxy-multi.json b/brandedVariable/raVgt_tavg-u-hxy-multi.json new file mode 100644 index 00000000..fb3f9d72 --- /dev/null +++ b/brandedVariable/raVgt_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "raVgt_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ra_tavg-u-hxy-lnd.json b/brandedVariable/ra_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..36f27dbb --- /dev/null +++ b/brandedVariable/ra_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ra_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ra_tavg-u-hxy-ng.json b/brandedVariable/ra_tavg-u-hxy-ng.json new file mode 100644 index 00000000..3092a2d6 --- /dev/null +++ b/brandedVariable/ra_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ra_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ra_tavg-u-hxy-shb.json b/brandedVariable/ra_tavg-u-hxy-shb.json new file mode 100644 index 00000000..054e9366 --- /dev/null +++ b/brandedVariable/ra_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ra_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ra_tavg-u-hxy-tree.json b/brandedVariable/ra_tavg-u-hxy-tree.json new file mode 100644 index 00000000..4983fb14 --- /dev/null +++ b/brandedVariable/ra_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ra_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rac13_tavg-u-hxy-lnd.json b/brandedVariable/rac13_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..6bb482f8 --- /dev/null +++ b/brandedVariable/rac13_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rac13_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rac14_tavg-u-hxy-lnd.json b/brandedVariable/rac14_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..5563b9c4 --- /dev/null +++ b/brandedVariable/rac14_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rac14_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffcclwtop_tavg-u-hxy-ccl.json b/brandedVariable/reffcclwtop_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..b2ba0dd4 --- /dev/null +++ b/brandedVariable/reffcclwtop_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffcclwtop_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffccwctop_tavg-u-hxy-ccl.json b/brandedVariable/reffccwctop_tavg-u-hxy-ccl.json new file mode 100644 index 00000000..5f1ed431 --- /dev/null +++ b/brandedVariable/reffccwctop_tavg-u-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffccwctop_tavg-u-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclic_tavg-al-hxy-ccl.json b/brandedVariable/reffclic_tavg-al-hxy-ccl.json new file mode 100644 index 00000000..395d36e6 --- /dev/null +++ b/brandedVariable/reffclic_tavg-al-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclic_tavg-al-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclic_tpt-al-hxy-ccl.json b/brandedVariable/reffclic_tpt-al-hxy-ccl.json new file mode 100644 index 00000000..19d3d0c4 --- /dev/null +++ b/brandedVariable/reffclic_tpt-al-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclic_tpt-al-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclic_tpt-al-hxys-ccl.json b/brandedVariable/reffclic_tpt-al-hxys-ccl.json new file mode 100644 index 00000000..31c50233 --- /dev/null +++ b/brandedVariable/reffclic_tpt-al-hxys-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclic_tpt-al-hxys-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclis_tavg-al-hxy-scl.json b/brandedVariable/reffclis_tavg-al-hxy-scl.json new file mode 100644 index 00000000..38939c23 --- /dev/null +++ b/brandedVariable/reffclis_tavg-al-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclis_tavg-al-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclis_tpt-al-hxy-scl.json b/brandedVariable/reffclis_tpt-al-hxy-scl.json new file mode 100644 index 00000000..55a4be49 --- /dev/null +++ b/brandedVariable/reffclis_tpt-al-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclis_tpt-al-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclis_tpt-al-hxys-scl.json b/brandedVariable/reffclis_tpt-al-hxys-scl.json new file mode 100644 index 00000000..4c9da93a --- /dev/null +++ b/brandedVariable/reffclis_tpt-al-hxys-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclis_tpt-al-hxys-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclwc_tavg-al-hxy-ccl.json b/brandedVariable/reffclwc_tavg-al-hxy-ccl.json new file mode 100644 index 00000000..d3266248 --- /dev/null +++ b/brandedVariable/reffclwc_tavg-al-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclwc_tavg-al-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclwc_tpt-al-hxy-ccl.json b/brandedVariable/reffclwc_tpt-al-hxy-ccl.json new file mode 100644 index 00000000..58c3d28d --- /dev/null +++ b/brandedVariable/reffclwc_tpt-al-hxy-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclwc_tpt-al-hxy-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclwc_tpt-al-hxys-ccl.json b/brandedVariable/reffclwc_tpt-al-hxys-ccl.json new file mode 100644 index 00000000..a428f1ea --- /dev/null +++ b/brandedVariable/reffclwc_tpt-al-hxys-ccl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclwc_tpt-al-hxys-ccl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclws_tavg-al-hxy-scl.json b/brandedVariable/reffclws_tavg-al-hxy-scl.json new file mode 100644 index 00000000..e1601806 --- /dev/null +++ b/brandedVariable/reffclws_tavg-al-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclws_tavg-al-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclws_tpt-al-hxy-scl.json b/brandedVariable/reffclws_tpt-al-hxy-scl.json new file mode 100644 index 00000000..92ead753 --- /dev/null +++ b/brandedVariable/reffclws_tpt-al-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclws_tpt-al-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclws_tpt-al-hxys-scl.json b/brandedVariable/reffclws_tpt-al-hxys-scl.json new file mode 100644 index 00000000..083df296 --- /dev/null +++ b/brandedVariable/reffclws_tpt-al-hxys-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclws_tpt-al-hxys-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffclwtop_tavg-u-hxy-u.json b/brandedVariable/reffclwtop_tavg-u-hxy-u.json new file mode 100644 index 00000000..0a54742c --- /dev/null +++ b/brandedVariable/reffclwtop_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffclwtop_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/reffsclwtop_tavg-u-hxy-scl.json b/brandedVariable/reffsclwtop_tavg-u-hxy-scl.json new file mode 100644 index 00000000..8bee9736 --- /dev/null +++ b/brandedVariable/reffsclwtop_tavg-u-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "reffsclwtop_tavg-u-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/residualFrac_tavg-u-hxy-u.json b/brandedVariable/residualFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..fae4458b --- /dev/null +++ b/brandedVariable/residualFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "residualFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhLitter_tavg-u-hxy-lnd.json b/brandedVariable/rhLitter_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..283af464 --- /dev/null +++ b/brandedVariable/rhLitter_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhLitter_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhLut_tavg-u-hxy-multi.json b/brandedVariable/rhLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..9bcc4a05 --- /dev/null +++ b/brandedVariable/rhLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhSoil_tavg-u-hxy-lnd.json b/brandedVariable/rhSoil_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..5901f9b0 --- /dev/null +++ b/brandedVariable/rhSoil_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhSoil_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhVgt_tavg-u-hxy-multi.json b/brandedVariable/rhVgt_tavg-u-hxy-multi.json new file mode 100644 index 00000000..33170871 --- /dev/null +++ b/brandedVariable/rhVgt_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhVgt_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rh_tavg-u-hxy-lnd.json b/brandedVariable/rh_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..25616dbd --- /dev/null +++ b/brandedVariable/rh_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rh_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rh_tavg-u-hxy-ng.json b/brandedVariable/rh_tavg-u-hxy-ng.json new file mode 100644 index 00000000..859a0438 --- /dev/null +++ b/brandedVariable/rh_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rh_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rh_tavg-u-hxy-shb.json b/brandedVariable/rh_tavg-u-hxy-shb.json new file mode 100644 index 00000000..b415c08e --- /dev/null +++ b/brandedVariable/rh_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rh_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rh_tavg-u-hxy-tree.json b/brandedVariable/rh_tavg-u-hxy-tree.json new file mode 100644 index 00000000..386c181b --- /dev/null +++ b/brandedVariable/rh_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rh_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhc13_tavg-u-hxy-lnd.json b/brandedVariable/rhc13_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..6853b806 --- /dev/null +++ b/brandedVariable/rhc13_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhc13_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rhc14_tavg-u-hxy-lnd.json b/brandedVariable/rhc14_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..acb452c3 --- /dev/null +++ b/brandedVariable/rhc14_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rhc14_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rivi_tavg-u-hxy-lnd.json b/brandedVariable/rivi_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..d6639134 --- /dev/null +++ b/brandedVariable/rivi_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rivi_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rivo_tavg-u-hxy-lnd.json b/brandedVariable/rivo_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..65a6523d --- /dev/null +++ b/brandedVariable/rivo_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rivo_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rld4co2_tavg-alh-hxy-u.json b/brandedVariable/rld4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..9cecd7bd --- /dev/null +++ b/brandedVariable/rld4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rld4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rld_tavg-alh-hxy-u.json b/brandedVariable/rld_tavg-alh-hxy-u.json new file mode 100644 index 00000000..cd60630b --- /dev/null +++ b/brandedVariable/rld_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rld_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rld_tpt-alh-hxys-u.json b/brandedVariable/rld_tpt-alh-hxys-u.json new file mode 100644 index 00000000..97942335 --- /dev/null +++ b/brandedVariable/rld_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rld_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldcs4co2_tavg-alh-hxy-u.json b/brandedVariable/rldcs4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..b82d8924 --- /dev/null +++ b/brandedVariable/rldcs4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldcs4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldcs_tavg-alh-hxy-u.json b/brandedVariable/rldcs_tavg-alh-hxy-u.json new file mode 100644 index 00000000..0f260eef --- /dev/null +++ b/brandedVariable/rldcs_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldcs_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldcs_tpt-alh-hxys-u.json b/brandedVariable/rldcs_tpt-alh-hxys-u.json new file mode 100644 index 00000000..4daf593e --- /dev/null +++ b/brandedVariable/rldcs_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldcs_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlds_tavg-u-hxy-is.json b/brandedVariable/rlds_tavg-u-hxy-is.json new file mode 100644 index 00000000..86e8571c --- /dev/null +++ b/brandedVariable/rlds_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlds_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlds_tavg-u-hxy-si.json b/brandedVariable/rlds_tavg-u-hxy-si.json new file mode 100644 index 00000000..8db56110 --- /dev/null +++ b/brandedVariable/rlds_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlds_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlds_tavg-u-hxy-u.json b/brandedVariable/rlds_tavg-u-hxy-u.json new file mode 100644 index 00000000..99692cc9 --- /dev/null +++ b/brandedVariable/rlds_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlds_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlds_tpt-u-hxy-u.json b/brandedVariable/rlds_tpt-u-hxy-u.json new file mode 100644 index 00000000..cad2661f --- /dev/null +++ b/brandedVariable/rlds_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlds_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlds_tpt-u-hxys-u.json b/brandedVariable/rlds_tpt-u-hxys-u.json new file mode 100644 index 00000000..dd70cdbd --- /dev/null +++ b/brandedVariable/rlds_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlds_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldscs_tavg-u-hxy-u.json b/brandedVariable/rldscs_tavg-u-hxy-u.json new file mode 100644 index 00000000..2a5f8324 --- /dev/null +++ b/brandedVariable/rldscs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldscs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldscs_tpt-u-hxy-u.json b/brandedVariable/rldscs_tpt-u-hxy-u.json new file mode 100644 index 00000000..2aaa9fd6 --- /dev/null +++ b/brandedVariable/rldscs_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldscs_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rldscs_tpt-u-hxys-u.json b/brandedVariable/rldscs_tpt-u-hxys-u.json new file mode 100644 index 00000000..efe93ae9 --- /dev/null +++ b/brandedVariable/rldscs_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rldscs_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rls_tavg-u-hxy-u.json b/brandedVariable/rls_tavg-u-hxy-u.json new file mode 100644 index 00000000..b6ed2675 --- /dev/null +++ b/brandedVariable/rls_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rls_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlu4co2_tavg-alh-hxy-u.json b/brandedVariable/rlu4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..012cc819 --- /dev/null +++ b/brandedVariable/rlu4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlu4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlu_tavg-alh-hxy-u.json b/brandedVariable/rlu_tavg-alh-hxy-u.json new file mode 100644 index 00000000..535a2e19 --- /dev/null +++ b/brandedVariable/rlu_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlu_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlu_tpt-alh-hxys-u.json b/brandedVariable/rlu_tpt-alh-hxys-u.json new file mode 100644 index 00000000..c81f36ea --- /dev/null +++ b/brandedVariable/rlu_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlu_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlucs4co2_tavg-alh-hxy-u.json b/brandedVariable/rlucs4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..094d8350 --- /dev/null +++ b/brandedVariable/rlucs4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlucs4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlucs_tavg-alh-hxy-u.json b/brandedVariable/rlucs_tavg-alh-hxy-u.json new file mode 100644 index 00000000..3954925b --- /dev/null +++ b/brandedVariable/rlucs_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlucs_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlucs_tpt-alh-hxys-u.json b/brandedVariable/rlucs_tpt-alh-hxys-u.json new file mode 100644 index 00000000..824571c9 --- /dev/null +++ b/brandedVariable/rlucs_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlucs_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlus_tavg-u-hxy-is.json b/brandedVariable/rlus_tavg-u-hxy-is.json new file mode 100644 index 00000000..f872ed25 --- /dev/null +++ b/brandedVariable/rlus_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlus_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlus_tavg-u-hxy-si.json b/brandedVariable/rlus_tavg-u-hxy-si.json new file mode 100644 index 00000000..ba83056b --- /dev/null +++ b/brandedVariable/rlus_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlus_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlus_tavg-u-hxy-u.json b/brandedVariable/rlus_tavg-u-hxy-u.json new file mode 100644 index 00000000..cafae3ab --- /dev/null +++ b/brandedVariable/rlus_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlus_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlus_tpt-u-hxys-u.json b/brandedVariable/rlus_tpt-u-hxys-u.json new file mode 100644 index 00000000..04ee1816 --- /dev/null +++ b/brandedVariable/rlus_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlus_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rluscs_tavg-u-hxy-u.json b/brandedVariable/rluscs_tavg-u-hxy-u.json new file mode 100644 index 00000000..44580086 --- /dev/null +++ b/brandedVariable/rluscs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rluscs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rluscsaf_tavg-u-hxy-u.json b/brandedVariable/rluscsaf_tavg-u-hxy-u.json new file mode 100644 index 00000000..bda5d64b --- /dev/null +++ b/brandedVariable/rluscsaf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rluscsaf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlut4co2_tavg-u-hxy-u.json b/brandedVariable/rlut4co2_tavg-u-hxy-u.json new file mode 100644 index 00000000..c5d6f807 --- /dev/null +++ b/brandedVariable/rlut4co2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlut4co2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlut_tavg-u-hxy-u.json b/brandedVariable/rlut_tavg-u-hxy-u.json new file mode 100644 index 00000000..54332b33 --- /dev/null +++ b/brandedVariable/rlut_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlut_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlut_tclmdc-u-hxy-u.json b/brandedVariable/rlut_tclmdc-u-hxy-u.json new file mode 100644 index 00000000..54027ab6 --- /dev/null +++ b/brandedVariable/rlut_tclmdc-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlut_tclmdc-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlut_tpt-u-hxy-u.json b/brandedVariable/rlut_tpt-u-hxy-u.json new file mode 100644 index 00000000..660881a1 --- /dev/null +++ b/brandedVariable/rlut_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlut_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlut_tpt-u-hxys-u.json b/brandedVariable/rlut_tpt-u-hxys-u.json new file mode 100644 index 00000000..85b1f070 --- /dev/null +++ b/brandedVariable/rlut_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlut_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutaf_tavg-u-hxy-u.json b/brandedVariable/rlutaf_tavg-u-hxy-u.json new file mode 100644 index 00000000..edad71a6 --- /dev/null +++ b/brandedVariable/rlutaf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutaf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutch4ref_tavg-u-hxy-u.json b/brandedVariable/rlutch4ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..74981e6a --- /dev/null +++ b/brandedVariable/rlutch4ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutch4ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcs4co2_tavg-u-hxy-u.json b/brandedVariable/rlutcs4co2_tavg-u-hxy-u.json new file mode 100644 index 00000000..10fef07f --- /dev/null +++ b/brandedVariable/rlutcs4co2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcs4co2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcs_tavg-u-hxy-u.json b/brandedVariable/rlutcs_tavg-u-hxy-u.json new file mode 100644 index 00000000..94f7f086 --- /dev/null +++ b/brandedVariable/rlutcs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcs_tclmdc-u-hxy-u.json b/brandedVariable/rlutcs_tclmdc-u-hxy-u.json new file mode 100644 index 00000000..99f6ff73 --- /dev/null +++ b/brandedVariable/rlutcs_tclmdc-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcs_tclmdc-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcs_tpt-u-hxy-u.json b/brandedVariable/rlutcs_tpt-u-hxy-u.json new file mode 100644 index 00000000..7e70a487 --- /dev/null +++ b/brandedVariable/rlutcs_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcs_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcs_tpt-u-hxys-u.json b/brandedVariable/rlutcs_tpt-u-hxys-u.json new file mode 100644 index 00000000..3728bbee --- /dev/null +++ b/brandedVariable/rlutcs_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcs_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcsaf_tavg-u-hxy-u.json b/brandedVariable/rlutcsaf_tavg-u-hxy-u.json new file mode 100644 index 00000000..5e55b344 --- /dev/null +++ b/brandedVariable/rlutcsaf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcsaf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcsch4ref_tavg-u-hxy-u.json b/brandedVariable/rlutcsch4ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..57470fe2 --- /dev/null +++ b/brandedVariable/rlutcsch4ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcsch4ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rlutcso3ref_tavg-u-hxy-u.json b/brandedVariable/rlutcso3ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..2e23bb41 --- /dev/null +++ b/brandedVariable/rlutcso3ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rlutcso3ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rluto3ref_tavg-u-hxy-u.json b/brandedVariable/rluto3ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..2a2e1d7b --- /dev/null +++ b/brandedVariable/rluto3ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rluto3ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rootd_ti-u-hxy-lnd.json b/brandedVariable/rootd_ti-u-hxy-lnd.json new file mode 100644 index 00000000..baa0fa98 --- /dev/null +++ b/brandedVariable/rootd_ti-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rootd_ti-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsd4co2_tavg-alh-hxy-u.json b/brandedVariable/rsd4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..0ccb6714 --- /dev/null +++ b/brandedVariable/rsd4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsd4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsd_tavg-alh-hxy-u.json b/brandedVariable/rsd_tavg-alh-hxy-u.json new file mode 100644 index 00000000..7a3b93c2 --- /dev/null +++ b/brandedVariable/rsd_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsd_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsd_tpt-alh-hxys-u.json b/brandedVariable/rsd_tpt-alh-hxys-u.json new file mode 100644 index 00000000..b5ae0915 --- /dev/null +++ b/brandedVariable/rsd_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsd_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdcs4co2_tavg-alh-hxy-u.json b/brandedVariable/rsdcs4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..1d8a54f5 --- /dev/null +++ b/brandedVariable/rsdcs4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdcs4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdcs_tavg-alh-hxy-u.json b/brandedVariable/rsdcs_tavg-alh-hxy-u.json new file mode 100644 index 00000000..1e7007fe --- /dev/null +++ b/brandedVariable/rsdcs_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdcs_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdcs_tpt-alh-hxys-u.json b/brandedVariable/rsdcs_tpt-alh-hxys-u.json new file mode 100644 index 00000000..deac97f2 --- /dev/null +++ b/brandedVariable/rsdcs_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdcs_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdo_tavg-ol-hxy-sea.json b/brandedVariable/rsdo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..2118da12 --- /dev/null +++ b/brandedVariable/rsdo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdoabsorb_tavg-ol-hxy-sea.json b/brandedVariable/rsdoabsorb_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..cef46a72 --- /dev/null +++ b/brandedVariable/rsdoabsorb_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdoabsorb_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-ifs.json b/brandedVariable/rsds_tavg-u-hxy-ifs.json new file mode 100644 index 00000000..be6caa9d --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-ifs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-is.json b/brandedVariable/rsds_tavg-u-hxy-is.json new file mode 100644 index 00000000..6abc43f2 --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-si.json b/brandedVariable/rsds_tavg-u-hxy-si.json new file mode 100644 index 00000000..f0ae1f8e --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-sn.json b/brandedVariable/rsds_tavg-u-hxy-sn.json new file mode 100644 index 00000000..a4b4682c --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-u.json b/brandedVariable/rsds_tavg-u-hxy-u.json new file mode 100644 index 00000000..c93cc320 --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tavg-u-hxy-ufs.json b/brandedVariable/rsds_tavg-u-hxy-ufs.json new file mode 100644 index 00000000..0d4d4b27 --- /dev/null +++ b/brandedVariable/rsds_tavg-u-hxy-ufs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tavg-u-hxy-ufs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tpt-u-hxy-u.json b/brandedVariable/rsds_tpt-u-hxy-u.json new file mode 100644 index 00000000..059709f7 --- /dev/null +++ b/brandedVariable/rsds_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsds_tpt-u-hxys-u.json b/brandedVariable/rsds_tpt-u-hxys-u.json new file mode 100644 index 00000000..9c3aa240 --- /dev/null +++ b/brandedVariable/rsds_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsds_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdscs_tavg-u-hxy-u.json b/brandedVariable/rsdscs_tavg-u-hxy-u.json new file mode 100644 index 00000000..a21c9095 --- /dev/null +++ b/brandedVariable/rsdscs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdscs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdscs_tpt-u-hxy-u.json b/brandedVariable/rsdscs_tpt-u-hxy-u.json new file mode 100644 index 00000000..ce1aeadb --- /dev/null +++ b/brandedVariable/rsdscs_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdscs_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdscs_tpt-u-hxys-u.json b/brandedVariable/rsdscs_tpt-u-hxys-u.json new file mode 100644 index 00000000..447f7d4a --- /dev/null +++ b/brandedVariable/rsdscs_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdscs_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdscsdiff_tavg-u-hxy-u.json b/brandedVariable/rsdscsdiff_tavg-u-hxy-u.json new file mode 100644 index 00000000..6268e8f1 --- /dev/null +++ b/brandedVariable/rsdscsdiff_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdscsdiff_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdsdiff_tavg-u-hxy-u.json b/brandedVariable/rsdsdiff_tavg-u-hxy-u.json new file mode 100644 index 00000000..8f53c631 --- /dev/null +++ b/brandedVariable/rsdsdiff_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdsdiff_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdt_tavg-u-hxy-u.json b/brandedVariable/rsdt_tavg-u-hxy-u.json new file mode 100644 index 00000000..41967719 --- /dev/null +++ b/brandedVariable/rsdt_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdt_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdt_tclmdc-u-hxy-u.json b/brandedVariable/rsdt_tclmdc-u-hxy-u.json new file mode 100644 index 00000000..ea238311 --- /dev/null +++ b/brandedVariable/rsdt_tclmdc-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdt_tclmdc-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsdt_tpt-u-hxys-u.json b/brandedVariable/rsdt_tpt-u-hxys-u.json new file mode 100644 index 00000000..15a0d56d --- /dev/null +++ b/brandedVariable/rsdt_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsdt_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsntds_tavg-u-hxy-sea.json b/brandedVariable/rsntds_tavg-u-hxy-sea.json new file mode 100644 index 00000000..7512363c --- /dev/null +++ b/brandedVariable/rsntds_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsntds_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rss_tavg-u-hxy-u.json b/brandedVariable/rss_tavg-u-hxy-u.json new file mode 100644 index 00000000..f7fe7669 --- /dev/null +++ b/brandedVariable/rss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsu4co2_tavg-alh-hxy-u.json b/brandedVariable/rsu4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..6d7537ee --- /dev/null +++ b/brandedVariable/rsu4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsu4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsu_tavg-alh-hxy-u.json b/brandedVariable/rsu_tavg-alh-hxy-u.json new file mode 100644 index 00000000..8306a47f --- /dev/null +++ b/brandedVariable/rsu_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsu_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsu_tpt-alh-hxys-u.json b/brandedVariable/rsu_tpt-alh-hxys-u.json new file mode 100644 index 00000000..e4add30d --- /dev/null +++ b/brandedVariable/rsu_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsu_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsucs4co2_tavg-alh-hxy-u.json b/brandedVariable/rsucs4co2_tavg-alh-hxy-u.json new file mode 100644 index 00000000..725779bd --- /dev/null +++ b/brandedVariable/rsucs4co2_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsucs4co2_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsucs_tavg-alh-hxy-u.json b/brandedVariable/rsucs_tavg-alh-hxy-u.json new file mode 100644 index 00000000..19e14659 --- /dev/null +++ b/brandedVariable/rsucs_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsucs_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsucs_tpt-alh-hxys-u.json b/brandedVariable/rsucs_tpt-alh-hxys-u.json new file mode 100644 index 00000000..289bc3b0 --- /dev/null +++ b/brandedVariable/rsucs_tpt-alh-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsucs_tpt-alh-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-ifs.json b/brandedVariable/rsus_tavg-u-hxy-ifs.json new file mode 100644 index 00000000..e57a4725 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-ifs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-ifs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-is.json b/brandedVariable/rsus_tavg-u-hxy-is.json new file mode 100644 index 00000000..45482dd4 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-si.json b/brandedVariable/rsus_tavg-u-hxy-si.json new file mode 100644 index 00000000..3b983b55 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-sn.json b/brandedVariable/rsus_tavg-u-hxy-sn.json new file mode 100644 index 00000000..1f5a0551 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-u.json b/brandedVariable/rsus_tavg-u-hxy-u.json new file mode 100644 index 00000000..aebec866 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tavg-u-hxy-ufs.json b/brandedVariable/rsus_tavg-u-hxy-ufs.json new file mode 100644 index 00000000..1d5adc87 --- /dev/null +++ b/brandedVariable/rsus_tavg-u-hxy-ufs.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tavg-u-hxy-ufs", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsus_tpt-u-hxys-u.json b/brandedVariable/rsus_tpt-u-hxys-u.json new file mode 100644 index 00000000..b9e6b608 --- /dev/null +++ b/brandedVariable/rsus_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsus_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsuscs_tavg-u-hxy-u.json b/brandedVariable/rsuscs_tavg-u-hxy-u.json new file mode 100644 index 00000000..19ad3ade --- /dev/null +++ b/brandedVariable/rsuscs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsuscs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsuscs_tpt-u-hxys-u.json b/brandedVariable/rsuscs_tpt-u-hxys-u.json new file mode 100644 index 00000000..b7ed1efa --- /dev/null +++ b/brandedVariable/rsuscs_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsuscs_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsut4co2_tavg-u-hxy-u.json b/brandedVariable/rsut4co2_tavg-u-hxy-u.json new file mode 100644 index 00000000..1b06d1b9 --- /dev/null +++ b/brandedVariable/rsut4co2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsut4co2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsut_tavg-u-hxy-u.json b/brandedVariable/rsut_tavg-u-hxy-u.json new file mode 100644 index 00000000..1ff8692f --- /dev/null +++ b/brandedVariable/rsut_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsut_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsut_tclmdc-u-hxy-u.json b/brandedVariable/rsut_tclmdc-u-hxy-u.json new file mode 100644 index 00000000..cd20cbcf --- /dev/null +++ b/brandedVariable/rsut_tclmdc-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsut_tclmdc-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsut_tpt-u-hxy-u.json b/brandedVariable/rsut_tpt-u-hxy-u.json new file mode 100644 index 00000000..5b338a72 --- /dev/null +++ b/brandedVariable/rsut_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsut_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsut_tpt-u-hxys-u.json b/brandedVariable/rsut_tpt-u-hxys-u.json new file mode 100644 index 00000000..0894d8d2 --- /dev/null +++ b/brandedVariable/rsut_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsut_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutaf_tavg-u-hxy-u.json b/brandedVariable/rsutaf_tavg-u-hxy-u.json new file mode 100644 index 00000000..e3245029 --- /dev/null +++ b/brandedVariable/rsutaf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutaf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutch4ref_tavg-u-hxy-u.json b/brandedVariable/rsutch4ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..84124318 --- /dev/null +++ b/brandedVariable/rsutch4ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutch4ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcs4co2_tavg-u-hxy-u.json b/brandedVariable/rsutcs4co2_tavg-u-hxy-u.json new file mode 100644 index 00000000..809eaa08 --- /dev/null +++ b/brandedVariable/rsutcs4co2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcs4co2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcs_tavg-u-hxy-u.json b/brandedVariable/rsutcs_tavg-u-hxy-u.json new file mode 100644 index 00000000..18b25067 --- /dev/null +++ b/brandedVariable/rsutcs_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcs_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcs_tclmdc-u-hxy-u.json b/brandedVariable/rsutcs_tclmdc-u-hxy-u.json new file mode 100644 index 00000000..9ba185c3 --- /dev/null +++ b/brandedVariable/rsutcs_tclmdc-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcs_tclmdc-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcs_tpt-u-hxy-u.json b/brandedVariable/rsutcs_tpt-u-hxy-u.json new file mode 100644 index 00000000..94a3d1b5 --- /dev/null +++ b/brandedVariable/rsutcs_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcs_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcs_tpt-u-hxys-u.json b/brandedVariable/rsutcs_tpt-u-hxys-u.json new file mode 100644 index 00000000..a649b121 --- /dev/null +++ b/brandedVariable/rsutcs_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcs_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcsaf_tavg-u-hxy-u.json b/brandedVariable/rsutcsaf_tavg-u-hxy-u.json new file mode 100644 index 00000000..ad40727c --- /dev/null +++ b/brandedVariable/rsutcsaf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcsaf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcsch4ref_tavg-u-hxy-u.json b/brandedVariable/rsutcsch4ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..be2568f3 --- /dev/null +++ b/brandedVariable/rsutcsch4ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcsch4ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsutcso3ref_tavg-u-hxy-u.json b/brandedVariable/rsutcso3ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..aea92301 --- /dev/null +++ b/brandedVariable/rsutcso3ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsutcso3ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rsuto3ref_tavg-u-hxy-u.json b/brandedVariable/rsuto3ref_tavg-u-hxy-u.json new file mode 100644 index 00000000..339e5897 --- /dev/null +++ b/brandedVariable/rsuto3ref_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rsuto3ref_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rtmt_tavg-u-hxy-u.json b/brandedVariable/rtmt_tavg-u-hxy-u.json new file mode 100644 index 00000000..a201444d --- /dev/null +++ b/brandedVariable/rtmt_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rtmt_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rtmt_tpt-u-hxys-u.json b/brandedVariable/rtmt_tpt-u-hxys-u.json new file mode 100644 index 00000000..fc634b22 --- /dev/null +++ b/brandedVariable/rtmt_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rtmt_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rv850_tavg-850hPa-hxy-air.json b/brandedVariable/rv850_tavg-850hPa-hxy-air.json new file mode 100644 index 00000000..fb0efed0 --- /dev/null +++ b/brandedVariable/rv850_tavg-850hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rv850_tavg-850hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rv850_tpt-850hPa-hxy-air.json b/brandedVariable/rv850_tpt-850hPa-hxy-air.json new file mode 100644 index 00000000..db07053e --- /dev/null +++ b/brandedVariable/rv850_tpt-850hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rv850_tpt-850hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/rzwc_tavg-u-hxy-lnd.json b/brandedVariable/rzwc_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f89b3638 --- /dev/null +++ b/brandedVariable/rzwc_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rzwc_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sbl_tavg-u-hxy-is.json b/brandedVariable/sbl_tavg-u-hxy-is.json new file mode 100644 index 00000000..63a3feec --- /dev/null +++ b/brandedVariable/sbl_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sbl_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sbl_tavg-u-hxy-lnd.json b/brandedVariable/sbl_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..50346be9 --- /dev/null +++ b/brandedVariable/sbl_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sbl_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sbl_tavg-u-hxy-si.json b/brandedVariable/sbl_tavg-u-hxy-si.json new file mode 100644 index 00000000..882c7333 --- /dev/null +++ b/brandedVariable/sbl_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sbl_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sbl_tavg-u-hxy-u.json b/brandedVariable/sbl_tavg-u-hxy-u.json new file mode 100644 index 00000000..1bfef5a3 --- /dev/null +++ b/brandedVariable/sbl_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sbl_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sbl_tpt-u-hxys-u.json b/brandedVariable/sbl_tpt-u-hxys-u.json new file mode 100644 index 00000000..dfe6177d --- /dev/null +++ b/brandedVariable/sbl_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sbl_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sci_tavg-u-hxy-u.json b/brandedVariable/sci_tavg-u-hxy-u.json new file mode 100644 index 00000000..8e9fa397 --- /dev/null +++ b/brandedVariable/sci_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sci_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sci_tavg-u-hxys-u.json b/brandedVariable/sci_tavg-u-hxys-u.json new file mode 100644 index 00000000..5faf870f --- /dev/null +++ b/brandedVariable/sci_tavg-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sci_tavg-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/scint_tavg-op4-hxy-sea.json b/brandedVariable/scint_tavg-op4-hxy-sea.json new file mode 100644 index 00000000..4f56ef5e --- /dev/null +++ b/brandedVariable/scint_tavg-op4-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "scint_tavg-op4-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/scldncl_tavg-u-hxy-scl.json b/brandedVariable/scldncl_tavg-u-hxy-scl.json new file mode 100644 index 00000000..71473f36 --- /dev/null +++ b/brandedVariable/scldncl_tavg-u-hxy-scl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "scldncl_tavg-u-hxy-scl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sduo_tavg-u-hxy-sea.json b/brandedVariable/sduo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2f92e1b6 --- /dev/null +++ b/brandedVariable/sduo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sduo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sdvo_tavg-u-hxy-sea.json b/brandedVariable/sdvo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..eb78f4e5 --- /dev/null +++ b/brandedVariable/sdvo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sdvo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sf6_tavg-ol-hxy-sea.json b/brandedVariable/sf6_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..2eb046e4 --- /dev/null +++ b/brandedVariable/sf6_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sf6_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfacrossline_tavg-u-ht-sea.json b/brandedVariable/sfacrossline_tavg-u-ht-sea.json new file mode 100644 index 00000000..6faaa5fc --- /dev/null +++ b/brandedVariable/sfacrossline_tavg-u-ht-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfacrossline_tavg-u-ht-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfcWind_tavg-h10m-hxy-u.json b/brandedVariable/sfcWind_tavg-h10m-hxy-u.json new file mode 100644 index 00000000..b8e36a90 --- /dev/null +++ b/brandedVariable/sfcWind_tavg-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfcWind_tavg-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfcWind_tmax-h10m-hxy-u.json b/brandedVariable/sfcWind_tmax-h10m-hxy-u.json new file mode 100644 index 00000000..030d33e4 --- /dev/null +++ b/brandedVariable/sfcWind_tmax-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfcWind_tmax-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfcWind_tpt-h10m-hxys-u.json b/brandedVariable/sfcWind_tpt-h10m-hxys-u.json new file mode 100644 index 00000000..f571a1d8 --- /dev/null +++ b/brandedVariable/sfcWind_tpt-h10m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfcWind_tpt-h10m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfdsi_tavg-u-hxy-sea.json b/brandedVariable/sfdsi_tavg-u-hxy-sea.json new file mode 100644 index 00000000..e72a5cbc --- /dev/null +++ b/brandedVariable/sfdsi_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfdsi_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfdsi_tavg-u-hxy-si.json b/brandedVariable/sfdsi_tavg-u-hxy-si.json new file mode 100644 index 00000000..f0913186 --- /dev/null +++ b/brandedVariable/sfdsi_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfdsi_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfpm10_tavg-al-hxy-u.json b/brandedVariable/sfpm10_tavg-al-hxy-u.json new file mode 100644 index 00000000..e95e9ee6 --- /dev/null +++ b/brandedVariable/sfpm10_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfpm10_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfpm10_tavg-h2m-hxy-u.json b/brandedVariable/sfpm10_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..2226da95 --- /dev/null +++ b/brandedVariable/sfpm10_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfpm10_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfpm1_tavg-h2m-hxy-u.json b/brandedVariable/sfpm1_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..97f8e1c9 --- /dev/null +++ b/brandedVariable/sfpm1_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfpm1_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfpm25_tavg-h2m-hxy-u.json b/brandedVariable/sfpm25_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..8d85cb06 --- /dev/null +++ b/brandedVariable/sfpm25_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfpm25_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfriver_tavg-u-hxy-sea.json b/brandedVariable/sfriver_tavg-u-hxy-sea.json new file mode 100644 index 00000000..23cf25bd --- /dev/null +++ b/brandedVariable/sfriver_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfriver_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftflf_tavg-u-hxy-u.json b/brandedVariable/sftflf_tavg-u-hxy-u.json new file mode 100644 index 00000000..6bb2f6d9 --- /dev/null +++ b/brandedVariable/sftflf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftflf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftflf_ti-u-hxy-u.json b/brandedVariable/sftflf_ti-u-hxy-u.json new file mode 100644 index 00000000..efe5465d --- /dev/null +++ b/brandedVariable/sftflf_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftflf_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftgif_tavg-u-hxy-u.json b/brandedVariable/sftgif_tavg-u-hxy-u.json new file mode 100644 index 00000000..95d8ec07 --- /dev/null +++ b/brandedVariable/sftgif_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftgif_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftgif_ti-u-hxy-u.json b/brandedVariable/sftgif_ti-u-hxy-u.json new file mode 100644 index 00000000..1ffb9344 --- /dev/null +++ b/brandedVariable/sftgif_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftgif_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftgrf_tavg-u-hxy-u.json b/brandedVariable/sftgrf_tavg-u-hxy-u.json new file mode 100644 index 00000000..5b90743f --- /dev/null +++ b/brandedVariable/sftgrf_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftgrf_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftgrf_ti-u-hxy-u.json b/brandedVariable/sftgrf_ti-u-hxy-u.json new file mode 100644 index 00000000..6c4418ae --- /dev/null +++ b/brandedVariable/sftgrf_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftgrf_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftlaf_ti-u-hxy-u.json b/brandedVariable/sftlaf_ti-u-hxy-u.json new file mode 100644 index 00000000..2090c48d --- /dev/null +++ b/brandedVariable/sftlaf_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftlaf_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftlf_ti-u-hxy-u.json b/brandedVariable/sftlf_ti-u-hxy-u.json new file mode 100644 index 00000000..aae9a65c --- /dev/null +++ b/brandedVariable/sftlf_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftlf_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sftof_ti-u-hxy-u.json b/brandedVariable/sftof_ti-u-hxy-u.json new file mode 100644 index 00000000..a4761564 --- /dev/null +++ b/brandedVariable/sftof_ti-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sftof_ti-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfx_tavg-ol-hxy-sea.json b/brandedVariable/sfx_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d3b6fbbd --- /dev/null +++ b/brandedVariable/sfx_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfx_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfx_tavg-u-hxy-sea.json b/brandedVariable/sfx_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2f3244b1 --- /dev/null +++ b/brandedVariable/sfx_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfx_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfy_tavg-ol-hxy-sea.json b/brandedVariable/sfy_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..854dea0b --- /dev/null +++ b/brandedVariable/sfy_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfy_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sfy_tavg-u-hxy-sea.json b/brandedVariable/sfy_tavg-u-hxy-sea.json new file mode 100644 index 00000000..796970ce --- /dev/null +++ b/brandedVariable/sfy_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sfy_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/shrubFrac_tavg-u-hxy-u.json b/brandedVariable/shrubFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..7c056341 --- /dev/null +++ b/brandedVariable/shrubFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "shrubFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/si_tavg-d0m-hxy-sea.json b/brandedVariable/si_tavg-d0m-hxy-sea.json new file mode 100644 index 00000000..350c7cc0 --- /dev/null +++ b/brandedVariable/si_tavg-d0m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "si_tavg-d0m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/si_tavg-ol-hxy-sea.json b/brandedVariable/si_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..b7f2d3b9 --- /dev/null +++ b/brandedVariable/si_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "si_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siage_tavg-u-hxy-si.json b/brandedVariable/siage_tavg-u-hxy-si.json new file mode 100644 index 00000000..16b1f24b --- /dev/null +++ b/brandedVariable/siage_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siage_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sialgc_tavg-u-hxy-si.json b/brandedVariable/sialgc_tavg-u-hxy-si.json new file mode 100644 index 00000000..96211d53 --- /dev/null +++ b/brandedVariable/sialgc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sialgc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siarea_tavg-u-hm-u.json b/brandedVariable/siarea_tavg-u-hm-u.json new file mode 100644 index 00000000..44085369 --- /dev/null +++ b/brandedVariable/siarea_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siarea_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siareaacrossline_tavg-u-ht-u.json b/brandedVariable/siareaacrossline_tavg-u-ht-u.json new file mode 100644 index 00000000..2fd7da1f --- /dev/null +++ b/brandedVariable/siareaacrossline_tavg-u-ht-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siareaacrossline_tavg-u-ht-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sichl_tavg-u-hxy-si.json b/brandedVariable/sichl_tavg-u-hxy-si.json new file mode 100644 index 00000000..f78967f4 --- /dev/null +++ b/brandedVariable/sichl_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sichl_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sicompstren_tavg-u-hxy-si.json b/brandedVariable/sicompstren_tavg-u-hxy-si.json new file mode 100644 index 00000000..d81fa5df --- /dev/null +++ b/brandedVariable/sicompstren_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sicompstren_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siconc_tavg-u-hxy-u.json b/brandedVariable/siconc_tavg-u-hxy-u.json new file mode 100644 index 00000000..5f235621 --- /dev/null +++ b/brandedVariable/siconc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siconc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siconca_tavg-u-hxy-u.json b/brandedVariable/siconca_tavg-u-hxy-u.json new file mode 100644 index 00000000..f466a37c --- /dev/null +++ b/brandedVariable/siconca_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siconca_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidconcdyn_tavg-u-hxy-sea.json b/brandedVariable/sidconcdyn_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d584a668 --- /dev/null +++ b/brandedVariable/sidconcdyn_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidconcdyn_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidconcth_tavg-u-hxy-sea.json b/brandedVariable/sidconcth_tavg-u-hxy-sea.json new file mode 100644 index 00000000..7392bed6 --- /dev/null +++ b/brandedVariable/sidconcth_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidconcth_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidivvel_tpt-u-hxy-si.json b/brandedVariable/sidivvel_tpt-u-hxy-si.json new file mode 100644 index 00000000..45794c38 --- /dev/null +++ b/brandedVariable/sidivvel_tpt-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidivvel_tpt-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassdyn_tavg-u-hxy-sea.json b/brandedVariable/sidmassdyn_tavg-u-hxy-sea.json new file mode 100644 index 00000000..f723276a --- /dev/null +++ b/brandedVariable/sidmassdyn_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassdyn_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassgrowthbot_tavg-u-hxy-sea.json b/brandedVariable/sidmassgrowthbot_tavg-u-hxy-sea.json new file mode 100644 index 00000000..8af29aa9 --- /dev/null +++ b/brandedVariable/sidmassgrowthbot_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassgrowthbot_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassgrowthsi_tavg-u-hxy-sea.json b/brandedVariable/sidmassgrowthsi_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d7218e9f --- /dev/null +++ b/brandedVariable/sidmassgrowthsi_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassgrowthsi_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassgrowthwat_tavg-u-hxy-sea.json b/brandedVariable/sidmassgrowthwat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..6d1b7515 --- /dev/null +++ b/brandedVariable/sidmassgrowthwat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassgrowthwat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassmeltbot_tavg-u-hxy-sea.json b/brandedVariable/sidmassmeltbot_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ae08960f --- /dev/null +++ b/brandedVariable/sidmassmeltbot_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassmeltbot_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassmeltlat_tavg-u-hxy-sea.json b/brandedVariable/sidmassmeltlat_tavg-u-hxy-sea.json new file mode 100644 index 00000000..a3aa8f42 --- /dev/null +++ b/brandedVariable/sidmassmeltlat_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassmeltlat_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassmelttop_tavg-u-hxy-sea.json b/brandedVariable/sidmassmelttop_tavg-u-hxy-sea.json new file mode 100644 index 00000000..be042522 --- /dev/null +++ b/brandedVariable/sidmassmelttop_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassmelttop_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmassth_tavg-u-hxy-sea.json b/brandedVariable/sidmassth_tavg-u-hxy-sea.json new file mode 100644 index 00000000..0cca6527 --- /dev/null +++ b/brandedVariable/sidmassth_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmassth_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmasstranx_tavg-u-hxy-u.json b/brandedVariable/sidmasstranx_tavg-u-hxy-u.json new file mode 100644 index 00000000..4a4affba --- /dev/null +++ b/brandedVariable/sidmasstranx_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmasstranx_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidmasstrany_tavg-u-hxy-u.json b/brandedVariable/sidmasstrany_tavg-u-hxy-u.json new file mode 100644 index 00000000..6e3ab033 --- /dev/null +++ b/brandedVariable/sidmasstrany_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidmasstrany_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidragbot_tavg-u-hxy-si.json b/brandedVariable/sidragbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..470b206c --- /dev/null +++ b/brandedVariable/sidragbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidragbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sidragtop_tavg-u-hxy-si.json b/brandedVariable/sidragtop_tavg-u-hxy-si.json new file mode 100644 index 00000000..13c86d1f --- /dev/null +++ b/brandedVariable/sidragtop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sidragtop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sieqthick_tavg-u-hxy-u.json b/brandedVariable/sieqthick_tavg-u-hxy-u.json new file mode 100644 index 00000000..47985508 --- /dev/null +++ b/brandedVariable/sieqthick_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sieqthick_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siextent_tavg-u-hm-u.json b/brandedVariable/siextent_tavg-u-hm-u.json new file mode 100644 index 00000000..0674eeff --- /dev/null +++ b/brandedVariable/siextent_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siextent_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sifb_tavg-u-hxy-si.json b/brandedVariable/sifb_tavg-u-hxy-si.json new file mode 100644 index 00000000..58e36075 --- /dev/null +++ b/brandedVariable/sifb_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sifb_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflcondbot_tavg-u-hxy-si.json b/brandedVariable/siflcondbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..2a056a56 --- /dev/null +++ b/brandedVariable/siflcondbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflcondbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflcondtop_tavg-u-hxy-si.json b/brandedVariable/siflcondtop_tavg-u-hxy-si.json new file mode 100644 index 00000000..06ae3258 --- /dev/null +++ b/brandedVariable/siflcondtop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflcondtop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflfwbot_tavg-u-hxy-sea.json b/brandedVariable/siflfwbot_tavg-u-hxy-sea.json new file mode 100644 index 00000000..a4ae765d --- /dev/null +++ b/brandedVariable/siflfwbot_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflfwbot_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflfwbot_tavg-u-hxy-si.json b/brandedVariable/siflfwbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..786c871f --- /dev/null +++ b/brandedVariable/siflfwbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflfwbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflfwdrain_tavg-u-hxy-si.json b/brandedVariable/siflfwdrain_tavg-u-hxy-si.json new file mode 100644 index 00000000..c726cdd1 --- /dev/null +++ b/brandedVariable/siflfwdrain_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflfwdrain_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sifllattop_tavg-u-hxy-si.json b/brandedVariable/sifllattop_tavg-u-hxy-si.json new file mode 100644 index 00000000..84a85a44 --- /dev/null +++ b/brandedVariable/sifllattop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sifllattop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflsensbot_tavg-u-hxy-si.json b/brandedVariable/siflsensbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..2b17894f --- /dev/null +++ b/brandedVariable/siflsensbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflsensbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflsenstop_tavg-u-hxy-si.json b/brandedVariable/siflsenstop_tavg-u-hxy-si.json new file mode 100644 index 00000000..d699f864 --- /dev/null +++ b/brandedVariable/siflsenstop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflsenstop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siflswdbot_tavg-u-hxy-si.json b/brandedVariable/siflswdbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..a73117b7 --- /dev/null +++ b/brandedVariable/siflswdbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siflswdbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforcecoriolx_tavg-u-hxy-si.json b/brandedVariable/siforcecoriolx_tavg-u-hxy-si.json new file mode 100644 index 00000000..d0e7c84e --- /dev/null +++ b/brandedVariable/siforcecoriolx_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforcecoriolx_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforcecorioly_tavg-u-hxy-si.json b/brandedVariable/siforcecorioly_tavg-u-hxy-si.json new file mode 100644 index 00000000..d6879d34 --- /dev/null +++ b/brandedVariable/siforcecorioly_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforcecorioly_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforceintstrx_tavg-u-hxy-si.json b/brandedVariable/siforceintstrx_tavg-u-hxy-si.json new file mode 100644 index 00000000..1b55f777 --- /dev/null +++ b/brandedVariable/siforceintstrx_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforceintstrx_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforceintstry_tavg-u-hxy-si.json b/brandedVariable/siforceintstry_tavg-u-hxy-si.json new file mode 100644 index 00000000..ab99231d --- /dev/null +++ b/brandedVariable/siforceintstry_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforceintstry_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforcetiltx_tavg-u-hxy-si.json b/brandedVariable/siforcetiltx_tavg-u-hxy-si.json new file mode 100644 index 00000000..7bbc2145 --- /dev/null +++ b/brandedVariable/siforcetiltx_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforcetiltx_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siforcetilty_tavg-u-hxy-si.json b/brandedVariable/siforcetilty_tavg-u-hxy-si.json new file mode 100644 index 00000000..0c2e1207 --- /dev/null +++ b/brandedVariable/siforcetilty_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siforcetilty_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sigpp_tavg-u-hxy-si.json b/brandedVariable/sigpp_tavg-u-hxy-si.json new file mode 100644 index 00000000..38f79957 --- /dev/null +++ b/brandedVariable/sigpp_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sigpp_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sihc_tavg-u-hxy-sea.json b/brandedVariable/sihc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..43001643 --- /dev/null +++ b/brandedVariable/sihc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sihc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siitdconc_tavg-u-hxy-u.json b/brandedVariable/siitdconc_tavg-u-hxy-u.json new file mode 100644 index 00000000..3957c475 --- /dev/null +++ b/brandedVariable/siitdconc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siitdconc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siitdsnconc_tavg-u-hxy-si.json b/brandedVariable/siitdsnconc_tavg-u-hxy-si.json new file mode 100644 index 00000000..70687095 --- /dev/null +++ b/brandedVariable/siitdsnconc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siitdsnconc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siitdsnthick_tavg-u-hxy-si.json b/brandedVariable/siitdsnthick_tavg-u-hxy-si.json new file mode 100644 index 00000000..5f177aa0 --- /dev/null +++ b/brandedVariable/siitdsnthick_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siitdsnthick_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siitdthick_tavg-u-hxy-si.json b/brandedVariable/siitdthick_tavg-u-hxy-si.json new file mode 100644 index 00000000..b9773231 --- /dev/null +++ b/brandedVariable/siitdthick_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siitdthick_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simass_tavg-u-hxy-sea.json b/brandedVariable/simass_tavg-u-hxy-sea.json new file mode 100644 index 00000000..f739bad2 --- /dev/null +++ b/brandedVariable/simass_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simass_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simassacrossline_tavg-u-ht-u.json b/brandedVariable/simassacrossline_tavg-u-ht-u.json new file mode 100644 index 00000000..62021681 --- /dev/null +++ b/brandedVariable/simassacrossline_tavg-u-ht-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simassacrossline_tavg-u-ht-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simpconc_tavg-u-hxy-si.json b/brandedVariable/simpconc_tavg-u-hxy-si.json new file mode 100644 index 00000000..9ec61564 --- /dev/null +++ b/brandedVariable/simpconc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simpconc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simpeffconc_tavg-u-hxy-si.json b/brandedVariable/simpeffconc_tavg-u-hxy-si.json new file mode 100644 index 00000000..1585df1d --- /dev/null +++ b/brandedVariable/simpeffconc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simpeffconc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simprefrozen_tavg-u-hxy-simp.json b/brandedVariable/simprefrozen_tavg-u-hxy-simp.json new file mode 100644 index 00000000..3d332a0c --- /dev/null +++ b/brandedVariable/simprefrozen_tavg-u-hxy-simp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simprefrozen_tavg-u-hxy-simp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simpthick_tavg-u-hxy-si.json b/brandedVariable/simpthick_tavg-u-hxy-si.json new file mode 100644 index 00000000..df171379 --- /dev/null +++ b/brandedVariable/simpthick_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simpthick_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/simpthick_tavg-u-hxy-simp.json b/brandedVariable/simpthick_tavg-u-hxy-simp.json new file mode 100644 index 00000000..4d4e1526 --- /dev/null +++ b/brandedVariable/simpthick_tavg-u-hxy-simp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "simpthick_tavg-u-hxy-simp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sino3_tavg-u-hxy-si.json b/brandedVariable/sino3_tavg-u-hxy-si.json new file mode 100644 index 00000000..48c0ccae --- /dev/null +++ b/brandedVariable/sino3_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sino3_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sirdgconc_tavg-u-hxy-si.json b/brandedVariable/sirdgconc_tavg-u-hxy-si.json new file mode 100644 index 00000000..2fcb46f7 --- /dev/null +++ b/brandedVariable/sirdgconc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sirdgconc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisali_tavg-u-hxy-si.json b/brandedVariable/sisali_tavg-u-hxy-si.json new file mode 100644 index 00000000..0b5845c4 --- /dev/null +++ b/brandedVariable/sisali_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisali_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisaltmass_tavg-u-hxy-sea.json b/brandedVariable/sisaltmass_tavg-u-hxy-sea.json new file mode 100644 index 00000000..1d925a53 --- /dev/null +++ b/brandedVariable/sisaltmass_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisaltmass_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sishearvel_tpt-u-hxy-si.json b/brandedVariable/sishearvel_tpt-u-hxy-si.json new file mode 100644 index 00000000..ed53aa2c --- /dev/null +++ b/brandedVariable/sishearvel_tpt-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sishearvel_tpt-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisi_tavg-u-hxy-si.json b/brandedVariable/sisi_tavg-u-hxy-si.json new file mode 100644 index 00000000..f4838bd2 --- /dev/null +++ b/brandedVariable/sisi_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisi_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisndmassdyn_tavg-u-hxy-si.json b/brandedVariable/sisndmassdyn_tavg-u-hxy-si.json new file mode 100644 index 00000000..95ff7ed9 --- /dev/null +++ b/brandedVariable/sisndmassdyn_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisndmassdyn_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisndmasssi_tavg-u-hxy-si.json b/brandedVariable/sisndmasssi_tavg-u-hxy-si.json new file mode 100644 index 00000000..55d88e9c --- /dev/null +++ b/brandedVariable/sisndmasssi_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisndmasssi_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisndmasswind_tavg-u-hxy-si.json b/brandedVariable/sisndmasswind_tavg-u-hxy-si.json new file mode 100644 index 00000000..833875d0 --- /dev/null +++ b/brandedVariable/sisndmasswind_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisndmasswind_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisnhc_tavg-u-hxy-si.json b/brandedVariable/sisnhc_tavg-u-hxy-si.json new file mode 100644 index 00000000..91ee3598 --- /dev/null +++ b/brandedVariable/sisnhc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisnhc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisnmass_tavg-u-hm-u.json b/brandedVariable/sisnmass_tavg-u-hm-u.json new file mode 100644 index 00000000..f899680f --- /dev/null +++ b/brandedVariable/sisnmass_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisnmass_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sisnmassacrossline_tavg-u-ht-u.json b/brandedVariable/sisnmassacrossline_tavg-u-ht-u.json new file mode 100644 index 00000000..3f86e396 --- /dev/null +++ b/brandedVariable/sisnmassacrossline_tavg-u-ht-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sisnmassacrossline_tavg-u-ht-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sispeed_tavg-u-hxy-si.json b/brandedVariable/sispeed_tavg-u-hxy-si.json new file mode 100644 index 00000000..6c4e7aa3 --- /dev/null +++ b/brandedVariable/sispeed_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sispeed_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistressave_tpt-u-hxy-si.json b/brandedVariable/sistressave_tpt-u-hxy-si.json new file mode 100644 index 00000000..80350093 --- /dev/null +++ b/brandedVariable/sistressave_tpt-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistressave_tpt-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistressmax_tpt-u-hxy-si.json b/brandedVariable/sistressmax_tpt-u-hxy-si.json new file mode 100644 index 00000000..9378c21f --- /dev/null +++ b/brandedVariable/sistressmax_tpt-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistressmax_tpt-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistrxdtop_tavg-u-hxy-si.json b/brandedVariable/sistrxdtop_tavg-u-hxy-si.json new file mode 100644 index 00000000..b281ad3f --- /dev/null +++ b/brandedVariable/sistrxdtop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistrxdtop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistrxubot_tavg-u-hxy-si.json b/brandedVariable/sistrxubot_tavg-u-hxy-si.json new file mode 100644 index 00000000..f8d2a749 --- /dev/null +++ b/brandedVariable/sistrxubot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistrxubot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistrydtop_tavg-u-hxy-si.json b/brandedVariable/sistrydtop_tavg-u-hxy-si.json new file mode 100644 index 00000000..3aec708f --- /dev/null +++ b/brandedVariable/sistrydtop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistrydtop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sistryubot_tavg-u-hxy-si.json b/brandedVariable/sistryubot_tavg-u-hxy-si.json new file mode 100644 index 00000000..44320969 --- /dev/null +++ b/brandedVariable/sistryubot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sistryubot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sitempbot_tavg-u-hxy-si.json b/brandedVariable/sitempbot_tavg-u-hxy-si.json new file mode 100644 index 00000000..4394005c --- /dev/null +++ b/brandedVariable/sitempbot_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sitempbot_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sitempsnic_tavg-u-hxy-si.json b/brandedVariable/sitempsnic_tavg-u-hxy-si.json new file mode 100644 index 00000000..e79c8f41 --- /dev/null +++ b/brandedVariable/sitempsnic_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sitempsnic_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sitemptop_tavg-u-hxy-si.json b/brandedVariable/sitemptop_tavg-u-hxy-si.json new file mode 100644 index 00000000..5f046fc9 --- /dev/null +++ b/brandedVariable/sitemptop_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sitemptop_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sithick_tavg-u-hxy-si.json b/brandedVariable/sithick_tavg-u-hxy-si.json new file mode 100644 index 00000000..cf6c8d8b --- /dev/null +++ b/brandedVariable/sithick_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sithick_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sithick_tavg-u-hxy-sir.json b/brandedVariable/sithick_tavg-u-hxy-sir.json new file mode 100644 index 00000000..376241da --- /dev/null +++ b/brandedVariable/sithick_tavg-u-hxy-sir.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sithick_tavg-u-hxy-sir", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sitimefrac_tavg-u-hxy-sea.json b/brandedVariable/sitimefrac_tavg-u-hxy-sea.json new file mode 100644 index 00000000..1acea566 --- /dev/null +++ b/brandedVariable/sitimefrac_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sitimefrac_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siu_tavg-u-hxy-si.json b/brandedVariable/siu_tavg-u-hxy-si.json new file mode 100644 index 00000000..a09d2d92 --- /dev/null +++ b/brandedVariable/siu_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siu_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/siv_tavg-u-hxy-si.json b/brandedVariable/siv_tavg-u-hxy-si.json new file mode 100644 index 00000000..402a1e37 --- /dev/null +++ b/brandedVariable/siv_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "siv_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sivol_tavg-u-hm-u.json b/brandedVariable/sivol_tavg-u-hm-u.json new file mode 100644 index 00000000..6c49bf67 --- /dev/null +++ b/brandedVariable/sivol_tavg-u-hm-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sivol_tavg-u-hm-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sltbasin_tavg-u-hys-sea.json b/brandedVariable/sltbasin_tavg-u-hys-sea.json new file mode 100644 index 00000000..c843ac1f --- /dev/null +++ b/brandedVariable/sltbasin_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sltbasin_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/slthick_ti-sl-hxy-lnd.json b/brandedVariable/slthick_ti-sl-hxy-lnd.json new file mode 100644 index 00000000..ed1aa2f9 --- /dev/null +++ b/brandedVariable/slthick_ti-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "slthick_ti-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sltovgyre_tavg-u-hys-sea.json b/brandedVariable/sltovgyre_tavg-u-hys-sea.json new file mode 100644 index 00000000..649f7400 --- /dev/null +++ b/brandedVariable/sltovgyre_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sltovgyre_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sltovovrt_tavg-u-hys-sea.json b/brandedVariable/sltovovrt_tavg-u-hys-sea.json new file mode 100644 index 00000000..1fd3c539 --- /dev/null +++ b/brandedVariable/sltovovrt_tavg-u-hys-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sltovovrt_tavg-u-hys-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/smc_tavg-alh-hxy-u.json b/brandedVariable/smc_tavg-alh-hxy-u.json new file mode 100644 index 00000000..60c4b728 --- /dev/null +++ b/brandedVariable/smc_tavg-alh-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "smc_tavg-alh-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snc_tavg-u-hxy-is.json b/brandedVariable/snc_tavg-u-hxy-is.json new file mode 100644 index 00000000..5b8fc01a --- /dev/null +++ b/brandedVariable/snc_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snc_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snc_tavg-u-hxy-lnd.json b/brandedVariable/snc_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..7a32f0b7 --- /dev/null +++ b/brandedVariable/snc_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snc_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snc_tavg-u-hxy-si.json b/brandedVariable/snc_tavg-u-hxy-si.json new file mode 100644 index 00000000..742ce4b4 --- /dev/null +++ b/brandedVariable/snc_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snc_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snd_tavg-u-hxy-lnd.json b/brandedVariable/snd_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f480f20b --- /dev/null +++ b/brandedVariable/snd_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snd_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snd_tavg-u-hxy-sn.json b/brandedVariable/snd_tavg-u-hxy-sn.json new file mode 100644 index 00000000..9af39501 --- /dev/null +++ b/brandedVariable/snd_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snd_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snicem_tavg-u-hxy-is.json b/brandedVariable/snicem_tavg-u-hxy-is.json new file mode 100644 index 00000000..3ec91092 --- /dev/null +++ b/brandedVariable/snicem_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snicem_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snm_tavg-u-hxy-is.json b/brandedVariable/snm_tavg-u-hxy-is.json new file mode 100644 index 00000000..e6059103 --- /dev/null +++ b/brandedVariable/snm_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snm_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snm_tavg-u-hxy-lnd.json b/brandedVariable/snm_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f2753066 --- /dev/null +++ b/brandedVariable/snm_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snm_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snm_tavg-u-hxy-si.json b/brandedVariable/snm_tavg-u-hxy-si.json new file mode 100644 index 00000000..78a44aa8 --- /dev/null +++ b/brandedVariable/snm_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snm_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snmsl_tavg-u-hxy-lnd.json b/brandedVariable/snmsl_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..709f7fbf --- /dev/null +++ b/brandedVariable/snmsl_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snmsl_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snrefr_tavg-u-hxy-is.json b/brandedVariable/snrefr_tavg-u-hxy-is.json new file mode 100644 index 00000000..c62faba9 --- /dev/null +++ b/brandedVariable/snrefr_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snrefr_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snrefr_tavg-u-hxy-lnd.json b/brandedVariable/snrefr_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..5c4cfb85 --- /dev/null +++ b/brandedVariable/snrefr_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snrefr_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snw_tavg-u-hxy-lnd.json b/brandedVariable/snw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..65a35d49 --- /dev/null +++ b/brandedVariable/snw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snw_tavg-u-hxy-si.json b/brandedVariable/snw_tavg-u-hxy-si.json new file mode 100644 index 00000000..8be1d407 --- /dev/null +++ b/brandedVariable/snw_tavg-u-hxy-si.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snw_tavg-u-hxy-si", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/snwc_tavg-u-hxy-lnd.json b/brandedVariable/snwc_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..747db9d7 --- /dev/null +++ b/brandedVariable/snwc_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "snwc_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/so2_tavg-al-hxy-u.json b/brandedVariable/so2_tavg-al-hxy-u.json new file mode 100644 index 00000000..7cd51c6e --- /dev/null +++ b/brandedVariable/so2_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "so2_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/so2_tavg-h2m-hxy-u.json b/brandedVariable/so2_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..303cb9e7 --- /dev/null +++ b/brandedVariable/so2_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "so2_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/so_tavg-ol-hm-sea.json b/brandedVariable/so_tavg-ol-hm-sea.json new file mode 100644 index 00000000..2433baad --- /dev/null +++ b/brandedVariable/so_tavg-ol-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "so_tavg-ol-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/so_tavg-ol-hxy-sea.json b/brandedVariable/so_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..be74797e --- /dev/null +++ b/brandedVariable/so_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "so_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sob_tavg-u-hxy-sea.json b/brandedVariable/sob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..4d29bf77 --- /dev/null +++ b/brandedVariable/sob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/somint_tavg-u-hxy-sea.json b/brandedVariable/somint_tavg-u-hxy-sea.json new file mode 100644 index 00000000..de94c1dc --- /dev/null +++ b/brandedVariable/somint_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "somint_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sootsn_tavg-u-hxy-lnd.json b/brandedVariable/sootsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..68570594 --- /dev/null +++ b/brandedVariable/sootsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sootsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sos_tavg-u-hm-sea.json b/brandedVariable/sos_tavg-u-hm-sea.json new file mode 100644 index 00000000..9e401647 --- /dev/null +++ b/brandedVariable/sos_tavg-u-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sos_tavg-u-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sos_tavg-u-hxy-sea.json b/brandedVariable/sos_tavg-u-hxy-sea.json new file mode 100644 index 00000000..d3930968 --- /dev/null +++ b/brandedVariable/sos_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sos_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sossq_tavg-u-hxy-sea.json b/brandedVariable/sossq_tavg-u-hxy-sea.json new file mode 100644 index 00000000..183c6d6a --- /dev/null +++ b/brandedVariable/sossq_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sossq_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/spco2_tavg-u-hxy-sea.json b/brandedVariable/spco2_tavg-u-hxy-sea.json new file mode 100644 index 00000000..34a4fefd --- /dev/null +++ b/brandedVariable/spco2_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "spco2_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/srfrad_tavg-u-hxy-u.json b/brandedVariable/srfrad_tavg-u-hxy-u.json new file mode 100644 index 00000000..69453c89 --- /dev/null +++ b/brandedVariable/srfrad_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "srfrad_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/stratch4loss_tavg-al-hxy-u.json b/brandedVariable/stratch4loss_tavg-al-hxy-u.json new file mode 100644 index 00000000..04fba3ba --- /dev/null +++ b/brandedVariable/stratch4loss_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "stratch4loss_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/strbasemag_tavg-u-hxy-is.json b/brandedVariable/strbasemag_tavg-u-hxy-is.json new file mode 100644 index 00000000..4499af79 --- /dev/null +++ b/brandedVariable/strbasemag_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "strbasemag_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sw17O_tavg-ol-hxy-sea.json b/brandedVariable/sw17O_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..52810ebe --- /dev/null +++ b/brandedVariable/sw17O_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sw17O_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sw18O_tavg-ol-hxy-sea.json b/brandedVariable/sw18O_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..f38c3eec --- /dev/null +++ b/brandedVariable/sw18O_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sw18O_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sw2H_tavg-ol-hxy-sea.json b/brandedVariable/sw2H_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..532faa27 --- /dev/null +++ b/brandedVariable/sw2H_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sw2H_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sw_tavg-u-hxy-lnd.json b/brandedVariable/sw_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f22237db --- /dev/null +++ b/brandedVariable/sw_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sw_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/sweLut_tavg-u-hxy-multi.json b/brandedVariable/sweLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..0b988bf4 --- /dev/null +++ b/brandedVariable/sweLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sweLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/swh_tavg-u-hxy-sea.json b/brandedVariable/swh_tavg-u-hxy-sea.json new file mode 100644 index 00000000..9cd16f9f --- /dev/null +++ b/brandedVariable/swh_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "swh_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/swh_tmax-u-hxy-sea.json b/brandedVariable/swh_tmax-u-hxy-sea.json new file mode 100644 index 00000000..9b17988f --- /dev/null +++ b/brandedVariable/swh_tmax-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "swh_tmax-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/swhswell_tavg-u-hxy-sea.json b/brandedVariable/swhswell_tavg-u-hxy-sea.json new file mode 100644 index 00000000..435749bf --- /dev/null +++ b/brandedVariable/swhswell_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "swhswell_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/swhwindsea_tavg-u-hxy-sea.json b/brandedVariable/swhwindsea_tavg-u-hxy-sea.json new file mode 100644 index 00000000..4c160f24 --- /dev/null +++ b/brandedVariable/swhwindsea_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "swhwindsea_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/t17d_tavg-u-hxy-sea.json b/brandedVariable/t17d_tavg-u-hxy-sea.json new file mode 100644 index 00000000..c8f81a19 --- /dev/null +++ b/brandedVariable/t17d_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "t17d_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/t20d_tavg-u-hxy-sea.json b/brandedVariable/t20d_tavg-u-hxy-sea.json new file mode 100644 index 00000000..08f8fa97 --- /dev/null +++ b/brandedVariable/t20d_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "t20d_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tavg-700hPa-hxy-air.json b/brandedVariable/ta_tavg-700hPa-hxy-air.json new file mode 100644 index 00000000..28a4f9f6 --- /dev/null +++ b/brandedVariable/ta_tavg-700hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tavg-700hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tavg-850hPa-hxy-air.json b/brandedVariable/ta_tavg-850hPa-hxy-air.json new file mode 100644 index 00000000..806c6a5d --- /dev/null +++ b/brandedVariable/ta_tavg-850hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tavg-850hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tavg-al-hxy-u.json b/brandedVariable/ta_tavg-al-hxy-u.json new file mode 100644 index 00000000..b01e4da5 --- /dev/null +++ b/brandedVariable/ta_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tavg-p19-hxy-air.json b/brandedVariable/ta_tavg-p19-hxy-air.json new file mode 100644 index 00000000..d4ae9a41 --- /dev/null +++ b/brandedVariable/ta_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tavg-p39-hy-air.json b/brandedVariable/ta_tavg-p39-hy-air.json new file mode 100644 index 00000000..a64602de --- /dev/null +++ b/brandedVariable/ta_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-al-hxy-u.json b/brandedVariable/ta_tpt-al-hxy-u.json new file mode 100644 index 00000000..fdee1ffb --- /dev/null +++ b/brandedVariable/ta_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-al-hxys-u.json b/brandedVariable/ta_tpt-al-hxys-u.json new file mode 100644 index 00000000..aa5b4f92 --- /dev/null +++ b/brandedVariable/ta_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-p3-hxy-air.json b/brandedVariable/ta_tpt-p3-hxy-air.json new file mode 100644 index 00000000..57bc55ba --- /dev/null +++ b/brandedVariable/ta_tpt-p3-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-p3-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-p5u-hxy-u.json b/brandedVariable/ta_tpt-p5u-hxy-u.json new file mode 100644 index 00000000..913c5ab7 --- /dev/null +++ b/brandedVariable/ta_tpt-p5u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-p5u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-p6-hxy-air.json b/brandedVariable/ta_tpt-p6-hxy-air.json new file mode 100644 index 00000000..3a365952 --- /dev/null +++ b/brandedVariable/ta_tpt-p6-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-p6-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ta_tpt-p7h-hxy-air.json b/brandedVariable/ta_tpt-p7h-hxy-air.json new file mode 100644 index 00000000..67ac6113 --- /dev/null +++ b/brandedVariable/ta_tpt-p7h-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ta_tpt-p7h-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/talk_tavg-ol-hxy-sea.json b/brandedVariable/talk_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..9302dae1 --- /dev/null +++ b/brandedVariable/talk_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "talk_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tasLut_tavg-h2m-hxy-multi.json b/brandedVariable/tasLut_tavg-h2m-hxy-multi.json new file mode 100644 index 00000000..fad0de1a --- /dev/null +++ b/brandedVariable/tasLut_tavg-h2m-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tasLut_tavg-h2m-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tavg-h2m-hm-is.json b/brandedVariable/tas_tavg-h2m-hm-is.json new file mode 100644 index 00000000..a5f7c9a0 --- /dev/null +++ b/brandedVariable/tas_tavg-h2m-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tavg-h2m-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tavg-h2m-hxy-u.json b/brandedVariable/tas_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..0ab02a01 --- /dev/null +++ b/brandedVariable/tas_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tavg-u-hxy-is.json b/brandedVariable/tas_tavg-u-hxy-is.json new file mode 100644 index 00000000..00cdc795 --- /dev/null +++ b/brandedVariable/tas_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tavg-u-hxy-u.json b/brandedVariable/tas_tavg-u-hxy-u.json new file mode 100644 index 00000000..b425d176 --- /dev/null +++ b/brandedVariable/tas_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tmax-h2m-hxy-crp.json b/brandedVariable/tas_tmax-h2m-hxy-crp.json new file mode 100644 index 00000000..eae52d4f --- /dev/null +++ b/brandedVariable/tas_tmax-h2m-hxy-crp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tmax-h2m-hxy-crp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tmax-h2m-hxy-u.json b/brandedVariable/tas_tmax-h2m-hxy-u.json new file mode 100644 index 00000000..f64fdf41 --- /dev/null +++ b/brandedVariable/tas_tmax-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tmax-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tmin-h2m-hxy-crp.json b/brandedVariable/tas_tmin-h2m-hxy-crp.json new file mode 100644 index 00000000..ffcadd75 --- /dev/null +++ b/brandedVariable/tas_tmin-h2m-hxy-crp.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tmin-h2m-hxy-crp", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tmin-h2m-hxy-u.json b/brandedVariable/tas_tmin-h2m-hxy-u.json new file mode 100644 index 00000000..beb7acb1 --- /dev/null +++ b/brandedVariable/tas_tmin-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tmin-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tpt-h2m-hxy-u.json b/brandedVariable/tas_tpt-h2m-hxy-u.json new file mode 100644 index 00000000..bd3f42fa --- /dev/null +++ b/brandedVariable/tas_tpt-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tpt-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tas_tpt-h2m-hxys-u.json b/brandedVariable/tas_tpt-h2m-hxys-u.json new file mode 100644 index 00000000..20acf08d --- /dev/null +++ b/brandedVariable/tas_tpt-h2m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tas_tpt-h2m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tatp_tavg-u-hxy-u.json b/brandedVariable/tatp_tavg-u-hxy-u.json new file mode 100644 index 00000000..64006943 --- /dev/null +++ b/brandedVariable/tatp_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tatp_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauu_tavg-u-hxy-u.json b/brandedVariable/tauu_tavg-u-hxy-u.json new file mode 100644 index 00000000..aff90e1a --- /dev/null +++ b/brandedVariable/tauu_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauu_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauu_tpt-u-hxys-u.json b/brandedVariable/tauu_tpt-u-hxys-u.json new file mode 100644 index 00000000..dc7bb91e --- /dev/null +++ b/brandedVariable/tauu_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauu_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauunoegw_tavg-p19-hxy-air.json b/brandedVariable/tauunoegw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..d11542a1 --- /dev/null +++ b/brandedVariable/tauunoegw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauunoegw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauunoegw_tavg-p39-hy-air.json b/brandedVariable/tauunoegw_tavg-p39-hy-air.json new file mode 100644 index 00000000..1bdf85df --- /dev/null +++ b/brandedVariable/tauunoegw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauunoegw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauunowgw_tavg-p19-hxy-air.json b/brandedVariable/tauunowgw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..f594332f --- /dev/null +++ b/brandedVariable/tauunowgw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauunowgw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauunowgw_tavg-p39-hy-air.json b/brandedVariable/tauunowgw_tavg-p39-hy-air.json new file mode 100644 index 00000000..5f167ee5 --- /dev/null +++ b/brandedVariable/tauunowgw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauunowgw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauuo_tavg-u-hxy-sea.json b/brandedVariable/tauuo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..0df99caa --- /dev/null +++ b/brandedVariable/tauuo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauuo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauuogw_tavg-p19-hxy-air.json b/brandedVariable/tauuogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..91691dc8 --- /dev/null +++ b/brandedVariable/tauuogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauuogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauuogw_tavg-p39-hy-air.json b/brandedVariable/tauuogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..efcf5c46 --- /dev/null +++ b/brandedVariable/tauuogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauuogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauupbl_tavg-u-hxy-u.json b/brandedVariable/tauupbl_tavg-u-hxy-u.json new file mode 100644 index 00000000..dbcaeb52 --- /dev/null +++ b/brandedVariable/tauupbl_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauupbl_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauv_tavg-u-hxy-u.json b/brandedVariable/tauv_tavg-u-hxy-u.json new file mode 100644 index 00000000..bfecf531 --- /dev/null +++ b/brandedVariable/tauv_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauv_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauv_tpt-u-hxys-u.json b/brandedVariable/tauv_tpt-u-hxys-u.json new file mode 100644 index 00000000..fe1f2322 --- /dev/null +++ b/brandedVariable/tauv_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauv_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvnogw_tavg-p19-hxy-air.json b/brandedVariable/tauvnogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..92bed4eb --- /dev/null +++ b/brandedVariable/tauvnogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvnogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvnogw_tavg-p39-hy-air.json b/brandedVariable/tauvnogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..7786ad17 --- /dev/null +++ b/brandedVariable/tauvnogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvnogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvo_tavg-u-hxy-sea.json b/brandedVariable/tauvo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..e9b0a872 --- /dev/null +++ b/brandedVariable/tauvo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvogw_tavg-p19-hxy-air.json b/brandedVariable/tauvogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..c6e7b54e --- /dev/null +++ b/brandedVariable/tauvogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvogw_tavg-p39-hy-air.json b/brandedVariable/tauvogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..a66ad1ef --- /dev/null +++ b/brandedVariable/tauvogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tauvpbl_tavg-u-hxy-u.json b/brandedVariable/tauvpbl_tavg-u-hxy-u.json new file mode 100644 index 00000000..6c9b36c8 --- /dev/null +++ b/brandedVariable/tauvpbl_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tauvpbl_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tdps_tavg-h2m-hxy-u.json b/brandedVariable/tdps_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..0be78d74 --- /dev/null +++ b/brandedVariable/tdps_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tdps_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tendacabf_tavg-u-hm-is.json b/brandedVariable/tendacabf_tavg-u-hm-is.json new file mode 100644 index 00000000..5de89b8e --- /dev/null +++ b/brandedVariable/tendacabf_tavg-u-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tendacabf_tavg-u-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tendlibmassbf_tavg-u-hm-is.json b/brandedVariable/tendlibmassbf_tavg-u-hm-is.json new file mode 100644 index 00000000..793d72a1 --- /dev/null +++ b/brandedVariable/tendlibmassbf_tavg-u-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tendlibmassbf_tavg-u-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tendlicalvf_tavg-u-hm-is.json b/brandedVariable/tendlicalvf_tavg-u-hm-is.json new file mode 100644 index 00000000..6724c115 --- /dev/null +++ b/brandedVariable/tendlicalvf_tavg-u-hm-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tendlicalvf_tavg-u-hm-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-d2000m-hxy-sea.json b/brandedVariable/thetao_tavg-d2000m-hxy-sea.json new file mode 100644 index 00000000..f5d1b4f0 --- /dev/null +++ b/brandedVariable/thetao_tavg-d2000m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-d2000m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-d300m-hxy-sea.json b/brandedVariable/thetao_tavg-d300m-hxy-sea.json new file mode 100644 index 00000000..9c4347f0 --- /dev/null +++ b/brandedVariable/thetao_tavg-d300m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-d300m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-d700m-hxy-sea.json b/brandedVariable/thetao_tavg-d700m-hxy-sea.json new file mode 100644 index 00000000..2bca4744 --- /dev/null +++ b/brandedVariable/thetao_tavg-d700m-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-d700m-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-ol-hm-sea.json b/brandedVariable/thetao_tavg-ol-hm-sea.json new file mode 100644 index 00000000..608411cc --- /dev/null +++ b/brandedVariable/thetao_tavg-ol-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-ol-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-ol-hxy-sea.json b/brandedVariable/thetao_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..a7715e65 --- /dev/null +++ b/brandedVariable/thetao_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetao_tavg-op20bar-hxy-sea.json b/brandedVariable/thetao_tavg-op20bar-hxy-sea.json new file mode 100644 index 00000000..4b502277 --- /dev/null +++ b/brandedVariable/thetao_tavg-op20bar-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetao_tavg-op20bar-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thetaot_tavg-u-hxy-sea.json b/brandedVariable/thetaot_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3b432658 --- /dev/null +++ b/brandedVariable/thetaot_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thetaot_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thkcello_tavg-ol-hxy-sea.json b/brandedVariable/thkcello_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d45f2078 --- /dev/null +++ b/brandedVariable/thkcello_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thkcello_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thkcello_ti-ol-hxy-sea.json b/brandedVariable/thkcello_ti-ol-hxy-sea.json new file mode 100644 index 00000000..b1e19bb1 --- /dev/null +++ b/brandedVariable/thkcello_ti-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thkcello_ti-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thkcelluo_tavg-ol-hxy-sea.json b/brandedVariable/thkcelluo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..0a619f9b --- /dev/null +++ b/brandedVariable/thkcelluo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thkcelluo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/thkcellvo_tavg-ol-hxy-sea.json b/brandedVariable/thkcellvo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..8613bcbb --- /dev/null +++ b/brandedVariable/thkcellvo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "thkcellvo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhus_tavg-al-hxy-u.json b/brandedVariable/tnhus_tavg-al-hxy-u.json new file mode 100644 index 00000000..7b07648c --- /dev/null +++ b/brandedVariable/tnhus_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhus_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhus_tpt-al-hxys-u.json b/brandedVariable/tnhus_tpt-al-hxys-u.json new file mode 100644 index 00000000..f0686f11 --- /dev/null +++ b/brandedVariable/tnhus_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhus_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusa_tavg-al-hxy-u.json b/brandedVariable/tnhusa_tavg-al-hxy-u.json new file mode 100644 index 00000000..27790abb --- /dev/null +++ b/brandedVariable/tnhusa_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusa_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusa_tpt-al-hxys-u.json b/brandedVariable/tnhusa_tpt-al-hxys-u.json new file mode 100644 index 00000000..22a6fed1 --- /dev/null +++ b/brandedVariable/tnhusa_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusa_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusc_tavg-al-hxy-u.json b/brandedVariable/tnhusc_tavg-al-hxy-u.json new file mode 100644 index 00000000..983259bb --- /dev/null +++ b/brandedVariable/tnhusc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusc_tpt-al-hxys-u.json b/brandedVariable/tnhusc_tpt-al-hxys-u.json new file mode 100644 index 00000000..a160832f --- /dev/null +++ b/brandedVariable/tnhusc_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusc_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusd_tavg-al-hxy-u.json b/brandedVariable/tnhusd_tavg-al-hxy-u.json new file mode 100644 index 00000000..a9fe08b9 --- /dev/null +++ b/brandedVariable/tnhusd_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusd_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusd_tpt-al-hxys-u.json b/brandedVariable/tnhusd_tpt-al-hxys-u.json new file mode 100644 index 00000000..46256d83 --- /dev/null +++ b/brandedVariable/tnhusd_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusd_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusmp_tavg-al-hxy-u.json b/brandedVariable/tnhusmp_tavg-al-hxy-u.json new file mode 100644 index 00000000..703d5d70 --- /dev/null +++ b/brandedVariable/tnhusmp_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusmp_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusmp_tpt-al-hxys-u.json b/brandedVariable/tnhusmp_tpt-al-hxys-u.json new file mode 100644 index 00000000..02dba257 --- /dev/null +++ b/brandedVariable/tnhusmp_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusmp_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhuspbl_tavg-al-hxy-u.json b/brandedVariable/tnhuspbl_tavg-al-hxy-u.json new file mode 100644 index 00000000..cf20da49 --- /dev/null +++ b/brandedVariable/tnhuspbl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhuspbl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhuspbl_tpt-al-hxys-u.json b/brandedVariable/tnhuspbl_tpt-al-hxys-u.json new file mode 100644 index 00000000..14b42ca5 --- /dev/null +++ b/brandedVariable/tnhuspbl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhuspbl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusscp_tavg-al-hxy-u.json b/brandedVariable/tnhusscp_tavg-al-hxy-u.json new file mode 100644 index 00000000..1b76f8d7 --- /dev/null +++ b/brandedVariable/tnhusscp_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusscp_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusscp_tpt-al-hxys-u.json b/brandedVariable/tnhusscp_tpt-al-hxys-u.json new file mode 100644 index 00000000..2613bdcc --- /dev/null +++ b/brandedVariable/tnhusscp_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusscp_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusscpbl_tavg-al-hxy-u.json b/brandedVariable/tnhusscpbl_tavg-al-hxy-u.json new file mode 100644 index 00000000..35aa3fc5 --- /dev/null +++ b/brandedVariable/tnhusscpbl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusscpbl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnhusscpbl_tpt-al-hxys-u.json b/brandedVariable/tnhusscpbl_tpt-al-hxys-u.json new file mode 100644 index 00000000..3195f0b6 --- /dev/null +++ b/brandedVariable/tnhusscpbl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnhusscpbl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnkebto_tavg-u-hxy-sea.json b/brandedVariable/tnkebto_tavg-u-hxy-sea.json new file mode 100644 index 00000000..92fa625f --- /dev/null +++ b/brandedVariable/tnkebto_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnkebto_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnpeo_tavg-u-hxy-sea.json b/brandedVariable/tnpeo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..520e7452 --- /dev/null +++ b/brandedVariable/tnpeo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnpeo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnt_tavg-al-hxy-u.json b/brandedVariable/tnt_tavg-al-hxy-u.json new file mode 100644 index 00000000..5f2a994b --- /dev/null +++ b/brandedVariable/tnt_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnt_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnt_tpt-al-hxys-u.json b/brandedVariable/tnt_tpt-al-hxys-u.json new file mode 100644 index 00000000..5e3d5319 --- /dev/null +++ b/brandedVariable/tnt_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnt_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnta_tavg-al-hxy-u.json b/brandedVariable/tnta_tavg-al-hxy-u.json new file mode 100644 index 00000000..a0094f9b --- /dev/null +++ b/brandedVariable/tnta_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnta_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tnta_tpt-al-hxys-u.json b/brandedVariable/tnta_tpt-al-hxys-u.json new file mode 100644 index 00000000..6c3601b0 --- /dev/null +++ b/brandedVariable/tnta_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tnta_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntc_tavg-al-hxy-u.json b/brandedVariable/tntc_tavg-al-hxy-u.json new file mode 100644 index 00000000..8f2520fa --- /dev/null +++ b/brandedVariable/tntc_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntc_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntc_tavg-p39-hy-air.json b/brandedVariable/tntc_tavg-p39-hy-air.json new file mode 100644 index 00000000..d85d111e --- /dev/null +++ b/brandedVariable/tntc_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntc_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntc_tpt-al-hxys-u.json b/brandedVariable/tntc_tpt-al-hxys-u.json new file mode 100644 index 00000000..dded7d70 --- /dev/null +++ b/brandedVariable/tntc_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntc_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntd_tavg-al-hxy-u.json b/brandedVariable/tntd_tavg-al-hxy-u.json new file mode 100644 index 00000000..34454d1c --- /dev/null +++ b/brandedVariable/tntd_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntd_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntd_tpt-al-hxys-u.json b/brandedVariable/tntd_tpt-al-hxys-u.json new file mode 100644 index 00000000..d9f2ad3f --- /dev/null +++ b/brandedVariable/tntd_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntd_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntmp_tavg-al-hxy-u.json b/brandedVariable/tntmp_tavg-al-hxy-u.json new file mode 100644 index 00000000..a5a9d5d2 --- /dev/null +++ b/brandedVariable/tntmp_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntmp_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntmp_tavg-p39-hy-air.json b/brandedVariable/tntmp_tavg-p39-hy-air.json new file mode 100644 index 00000000..59e780bc --- /dev/null +++ b/brandedVariable/tntmp_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntmp_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntmp_tpt-al-hxys-u.json b/brandedVariable/tntmp_tpt-al-hxys-u.json new file mode 100644 index 00000000..cb667e8d --- /dev/null +++ b/brandedVariable/tntmp_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntmp_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntnogw_tavg-p39-hy-air.json b/brandedVariable/tntnogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..c66637c7 --- /dev/null +++ b/brandedVariable/tntnogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntnogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntogw_tavg-p39-hy-air.json b/brandedVariable/tntogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..bc62850d --- /dev/null +++ b/brandedVariable/tntogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntpbl_tavg-al-hxy-u.json b/brandedVariable/tntpbl_tavg-al-hxy-u.json new file mode 100644 index 00000000..716c0cba --- /dev/null +++ b/brandedVariable/tntpbl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntpbl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntpbl_tpt-al-hxys-u.json b/brandedVariable/tntpbl_tpt-al-hxys-u.json new file mode 100644 index 00000000..626a9f2e --- /dev/null +++ b/brandedVariable/tntpbl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntpbl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntr_tavg-al-hxy-u.json b/brandedVariable/tntr_tavg-al-hxy-u.json new file mode 100644 index 00000000..5e5da365 --- /dev/null +++ b/brandedVariable/tntr_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntr_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntr_tpt-al-hxys-u.json b/brandedVariable/tntr_tpt-al-hxys-u.json new file mode 100644 index 00000000..10062d6f --- /dev/null +++ b/brandedVariable/tntr_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntr_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrl_tavg-al-hxy-u.json b/brandedVariable/tntrl_tavg-al-hxy-u.json new file mode 100644 index 00000000..36ff1bc7 --- /dev/null +++ b/brandedVariable/tntrl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrl_tavg-p39-hy-air.json b/brandedVariable/tntrl_tavg-p39-hy-air.json new file mode 100644 index 00000000..29cee374 --- /dev/null +++ b/brandedVariable/tntrl_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrl_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrl_tpt-al-hxys-u.json b/brandedVariable/tntrl_tpt-al-hxys-u.json new file mode 100644 index 00000000..b30a34c6 --- /dev/null +++ b/brandedVariable/tntrl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrlcs_tavg-al-hxy-u.json b/brandedVariable/tntrlcs_tavg-al-hxy-u.json new file mode 100644 index 00000000..f78cee31 --- /dev/null +++ b/brandedVariable/tntrlcs_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrlcs_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrlcs_tavg-p39-hy-air.json b/brandedVariable/tntrlcs_tavg-p39-hy-air.json new file mode 100644 index 00000000..e0b96536 --- /dev/null +++ b/brandedVariable/tntrlcs_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrlcs_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrlcs_tpt-al-hxys-u.json b/brandedVariable/tntrlcs_tpt-al-hxys-u.json new file mode 100644 index 00000000..c7598fad --- /dev/null +++ b/brandedVariable/tntrlcs_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrlcs_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrs_tavg-al-hxy-u.json b/brandedVariable/tntrs_tavg-al-hxy-u.json new file mode 100644 index 00000000..8770bfa9 --- /dev/null +++ b/brandedVariable/tntrs_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrs_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrs_tavg-p39-hy-air.json b/brandedVariable/tntrs_tavg-p39-hy-air.json new file mode 100644 index 00000000..2dbe8288 --- /dev/null +++ b/brandedVariable/tntrs_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrs_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrs_tpt-al-hxys-u.json b/brandedVariable/tntrs_tpt-al-hxys-u.json new file mode 100644 index 00000000..303a5da7 --- /dev/null +++ b/brandedVariable/tntrs_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrs_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrscs_tavg-al-hxy-u.json b/brandedVariable/tntrscs_tavg-al-hxy-u.json new file mode 100644 index 00000000..6cbfed25 --- /dev/null +++ b/brandedVariable/tntrscs_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrscs_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrscs_tavg-p39-hy-air.json b/brandedVariable/tntrscs_tavg-p39-hy-air.json new file mode 100644 index 00000000..4cfcdee2 --- /dev/null +++ b/brandedVariable/tntrscs_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrscs_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntrscs_tpt-al-hxys-u.json b/brandedVariable/tntrscs_tpt-al-hxys-u.json new file mode 100644 index 00000000..3cc23db0 --- /dev/null +++ b/brandedVariable/tntrscs_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntrscs_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntscp_tavg-al-hxy-u.json b/brandedVariable/tntscp_tavg-al-hxy-u.json new file mode 100644 index 00000000..8d1ce442 --- /dev/null +++ b/brandedVariable/tntscp_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntscp_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntscp_tavg-p39-hy-air.json b/brandedVariable/tntscp_tavg-p39-hy-air.json new file mode 100644 index 00000000..f363664e --- /dev/null +++ b/brandedVariable/tntscp_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntscp_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntscp_tpt-al-hxys-u.json b/brandedVariable/tntscp_tpt-al-hxys-u.json new file mode 100644 index 00000000..797528f8 --- /dev/null +++ b/brandedVariable/tntscp_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntscp_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntscpbl_tavg-al-hxy-u.json b/brandedVariable/tntscpbl_tavg-al-hxy-u.json new file mode 100644 index 00000000..8152a90f --- /dev/null +++ b/brandedVariable/tntscpbl_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntscpbl_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tntscpbl_tpt-al-hxys-u.json b/brandedVariable/tntscpbl_tpt-al-hxys-u.json new file mode 100644 index 00000000..026d7550 --- /dev/null +++ b/brandedVariable/tntscpbl_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tntscpbl_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tob_tavg-u-hxy-sea.json b/brandedVariable/tob_tavg-u-hxy-sea.json new file mode 100644 index 00000000..3054f7b1 --- /dev/null +++ b/brandedVariable/tob_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tob_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/topg_tavg-u-hxy-gis.json b/brandedVariable/topg_tavg-u-hxy-gis.json new file mode 100644 index 00000000..8afd0343 --- /dev/null +++ b/brandedVariable/topg_tavg-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "topg_tavg-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/topg_ti-u-hxy-gis.json b/brandedVariable/topg_ti-u-hxy-gis.json new file mode 100644 index 00000000..bb310531 --- /dev/null +++ b/brandedVariable/topg_ti-u-hxy-gis.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "topg_ti-u-hxy-gis", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tos_tavg-u-hm-sea.json b/brandedVariable/tos_tavg-u-hm-sea.json new file mode 100644 index 00000000..0c4f7993 --- /dev/null +++ b/brandedVariable/tos_tavg-u-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tos_tavg-u-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tos_tavg-u-hxy-sea.json b/brandedVariable/tos_tavg-u-hxy-sea.json new file mode 100644 index 00000000..6f74ce9c --- /dev/null +++ b/brandedVariable/tos_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tos_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tos_tpt-u-hxy-sea.json b/brandedVariable/tos_tpt-u-hxy-sea.json new file mode 100644 index 00000000..a9d67f31 --- /dev/null +++ b/brandedVariable/tos_tpt-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tos_tpt-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tossq_tavg-u-hxy-sea.json b/brandedVariable/tossq_tavg-u-hxy-sea.json new file mode 100644 index 00000000..6df72c57 --- /dev/null +++ b/brandedVariable/tossq_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tossq_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/toz_tavg-u-hxy-u.json b/brandedVariable/toz_tavg-u-hxy-u.json new file mode 100644 index 00000000..0c67f9e8 --- /dev/null +++ b/brandedVariable/toz_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "toz_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tpf_tavg-u-hxy-lnd.json b/brandedVariable/tpf_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..eb3afbb3 --- /dev/null +++ b/brandedVariable/tpf_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tpf_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tran_tavg-u-hxy-lnd.json b/brandedVariable/tran_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..cc3fe9bc --- /dev/null +++ b/brandedVariable/tran_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tran_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tran_tavg-u-hxy-u.json b/brandedVariable/tran_tavg-u-hxy-u.json new file mode 100644 index 00000000..d2363be6 --- /dev/null +++ b/brandedVariable/tran_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tran_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/treeFracBdlDcd_tavg-u-hxy-u.json b/brandedVariable/treeFracBdlDcd_tavg-u-hxy-u.json new file mode 100644 index 00000000..5d10ceca --- /dev/null +++ b/brandedVariable/treeFracBdlDcd_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "treeFracBdlDcd_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/treeFracBdlEvg_tavg-u-hxy-u.json b/brandedVariable/treeFracBdlEvg_tavg-u-hxy-u.json new file mode 100644 index 00000000..8e8d8c1e --- /dev/null +++ b/brandedVariable/treeFracBdlEvg_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "treeFracBdlEvg_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/treeFracNdlDcd_tavg-u-hxy-u.json b/brandedVariable/treeFracNdlDcd_tavg-u-hxy-u.json new file mode 100644 index 00000000..7ba79dcb --- /dev/null +++ b/brandedVariable/treeFracNdlDcd_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "treeFracNdlDcd_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/treeFracNdlEvg_tavg-u-hxy-u.json b/brandedVariable/treeFracNdlEvg_tavg-u-hxy-u.json new file mode 100644 index 00000000..704ef7bf --- /dev/null +++ b/brandedVariable/treeFracNdlEvg_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "treeFracNdlEvg_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/treeFrac_tavg-u-hxy-u.json b/brandedVariable/treeFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..d1feebc1 --- /dev/null +++ b/brandedVariable/treeFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "treeFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tropch4loss_tavg-al-hxy-u.json b/brandedVariable/tropch4loss_tavg-al-hxy-u.json new file mode 100644 index 00000000..e36d9edf --- /dev/null +++ b/brandedVariable/tropch4loss_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tropch4loss_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tropch4lossoh_tavg-al-hxy-u.json b/brandedVariable/tropch4lossoh_tavg-al-hxy-u.json new file mode 100644 index 00000000..acc52165 --- /dev/null +++ b/brandedVariable/tropch4lossoh_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tropch4lossoh_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tropdo3chm_tavg-al-hxy-u.json b/brandedVariable/tropdo3chm_tavg-al-hxy-u.json new file mode 100644 index 00000000..27d57caf --- /dev/null +++ b/brandedVariable/tropdo3chm_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tropdo3chm_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tropo3ste_tavg-al-hxy-u.json b/brandedVariable/tropo3ste_tavg-al-hxy-u.json new file mode 100644 index 00000000..6a028a17 --- /dev/null +++ b/brandedVariable/tropo3ste_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tropo3ste_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tropoz_tavg-u-hxy-u.json b/brandedVariable/tropoz_tavg-u-hxy-u.json new file mode 100644 index 00000000..56a0bc95 --- /dev/null +++ b/brandedVariable/tropoz_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tropoz_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tsLut_tavg-u-hxy-multi.json b/brandedVariable/tsLut_tavg-u-hxy-multi.json new file mode 100644 index 00000000..9eae1186 --- /dev/null +++ b/brandedVariable/tsLut_tavg-u-hxy-multi.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tsLut_tavg-u-hxy-multi", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ts_tavg-u-hxy-is.json b/brandedVariable/ts_tavg-u-hxy-is.json new file mode 100644 index 00000000..4893281a --- /dev/null +++ b/brandedVariable/ts_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ts_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ts_tavg-u-hxy-sn.json b/brandedVariable/ts_tavg-u-hxy-sn.json new file mode 100644 index 00000000..c19c026c --- /dev/null +++ b/brandedVariable/ts_tavg-u-hxy-sn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ts_tavg-u-hxy-sn", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ts_tavg-u-hxy-u.json b/brandedVariable/ts_tavg-u-hxy-u.json new file mode 100644 index 00000000..2b7d9021 --- /dev/null +++ b/brandedVariable/ts_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ts_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ts_tpt-u-hxy-u.json b/brandedVariable/ts_tpt-u-hxy-u.json new file mode 100644 index 00000000..387c9195 --- /dev/null +++ b/brandedVariable/ts_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ts_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ts_tpt-u-hxys-u.json b/brandedVariable/ts_tpt-u-hxys-u.json new file mode 100644 index 00000000..98aad177 --- /dev/null +++ b/brandedVariable/ts_tpt-u-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ts_tpt-u-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tsl_tavg-sl-hxy-lnd.json b/brandedVariable/tsl_tavg-sl-hxy-lnd.json new file mode 100644 index 00000000..a5f818e3 --- /dev/null +++ b/brandedVariable/tsl_tavg-sl-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tsl_tavg-sl-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tslsi_tavg-u-hxy-u.json b/brandedVariable/tslsi_tavg-u-hxy-u.json new file mode 100644 index 00000000..d1b9b6c7 --- /dev/null +++ b/brandedVariable/tslsi_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tslsi_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tslsi_tpt-u-hxy-u.json b/brandedVariable/tslsi_tpt-u-hxy-u.json new file mode 100644 index 00000000..501f16c1 --- /dev/null +++ b/brandedVariable/tslsi_tpt-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tslsi_tpt-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tsn_tavg-u-hxy-is.json b/brandedVariable/tsn_tavg-u-hxy-is.json new file mode 100644 index 00000000..df7f267d --- /dev/null +++ b/brandedVariable/tsn_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tsn_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/tsn_tavg-u-hxy-lnd.json b/brandedVariable/tsn_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..3819b97d --- /dev/null +++ b/brandedVariable/tsn_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tsn_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ttop_tavg-u-hxy-cl.json b/brandedVariable/ttop_tavg-u-hxy-cl.json new file mode 100644 index 00000000..33b128bc --- /dev/null +++ b/brandedVariable/ttop_tavg-u-hxy-cl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ttop_tavg-u-hxy-cl", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tavg-10hPa-hxy-air.json b/brandedVariable/ua_tavg-10hPa-hxy-air.json new file mode 100644 index 00000000..2700d802 --- /dev/null +++ b/brandedVariable/ua_tavg-10hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tavg-10hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tavg-al-hxy-u.json b/brandedVariable/ua_tavg-al-hxy-u.json new file mode 100644 index 00000000..a7f706ab --- /dev/null +++ b/brandedVariable/ua_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tavg-h100m-hxy-u.json b/brandedVariable/ua_tavg-h100m-hxy-u.json new file mode 100644 index 00000000..d762c61e --- /dev/null +++ b/brandedVariable/ua_tavg-h100m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tavg-h100m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tavg-p19-hxy-air.json b/brandedVariable/ua_tavg-p19-hxy-air.json new file mode 100644 index 00000000..9fe4a28c --- /dev/null +++ b/brandedVariable/ua_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tavg-p39-hy-air.json b/brandedVariable/ua_tavg-p39-hy-air.json new file mode 100644 index 00000000..466cbc60 --- /dev/null +++ b/brandedVariable/ua_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-200hPa-hxy-u.json b/brandedVariable/ua_tpt-200hPa-hxy-u.json new file mode 100644 index 00000000..89edc582 --- /dev/null +++ b/brandedVariable/ua_tpt-200hPa-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-200hPa-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-al-hxy-u.json b/brandedVariable/ua_tpt-al-hxy-u.json new file mode 100644 index 00000000..d7cdfdba --- /dev/null +++ b/brandedVariable/ua_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-al-hxys-u.json b/brandedVariable/ua_tpt-al-hxys-u.json new file mode 100644 index 00000000..552263f7 --- /dev/null +++ b/brandedVariable/ua_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-h100m-hxy-u.json b/brandedVariable/ua_tpt-h100m-hxy-u.json new file mode 100644 index 00000000..35eba36b --- /dev/null +++ b/brandedVariable/ua_tpt-h100m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-h100m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-p3-hxy-air.json b/brandedVariable/ua_tpt-p3-hxy-air.json new file mode 100644 index 00000000..348c76a9 --- /dev/null +++ b/brandedVariable/ua_tpt-p3-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-p3-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-p5u-hxy-air.json b/brandedVariable/ua_tpt-p5u-hxy-air.json new file mode 100644 index 00000000..74344da1 --- /dev/null +++ b/brandedVariable/ua_tpt-p5u-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-p5u-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-p6-hxy-air.json b/brandedVariable/ua_tpt-p6-hxy-air.json new file mode 100644 index 00000000..04a6f965 --- /dev/null +++ b/brandedVariable/ua_tpt-p6-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-p6-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ua_tpt-p7h-hxy-air.json b/brandedVariable/ua_tpt-p7h-hxy-air.json new file mode 100644 index 00000000..9ed43206 --- /dev/null +++ b/brandedVariable/ua_tpt-p7h-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ua_tpt-p7h-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/uas_tavg-h10m-hxy-u.json b/brandedVariable/uas_tavg-h10m-hxy-u.json new file mode 100644 index 00000000..8f621f55 --- /dev/null +++ b/brandedVariable/uas_tavg-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "uas_tavg-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/uas_tpt-h10m-hxy-u.json b/brandedVariable/uas_tpt-h10m-hxy-u.json new file mode 100644 index 00000000..125cc992 --- /dev/null +++ b/brandedVariable/uas_tpt-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "uas_tpt-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/uas_tpt-h10m-hxys-u.json b/brandedVariable/uas_tpt-h10m-hxys-u.json new file mode 100644 index 00000000..d22abecc --- /dev/null +++ b/brandedVariable/uas_tpt-h10m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "uas_tpt-h10m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/umo_tavg-ol-hxy-sea.json b/brandedVariable/umo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..f56c6f18 --- /dev/null +++ b/brandedVariable/umo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "umo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/unknown01.json b/brandedVariable/unknown01.json new file mode 100644 index 00000000..c2dd01ee --- /dev/null +++ b/brandedVariable/unknown01.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "unknown01", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/unknown02.json b/brandedVariable/unknown02.json new file mode 100644 index 00000000..62551630 --- /dev/null +++ b/brandedVariable/unknown02.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "unknown02", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/unknown03.json b/brandedVariable/unknown03.json new file mode 100644 index 00000000..4ba65df8 --- /dev/null +++ b/brandedVariable/unknown03.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "unknown03", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/unknown04.json b/brandedVariable/unknown04.json new file mode 100644 index 00000000..b64b5d93 --- /dev/null +++ b/brandedVariable/unknown04.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "unknown04", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/unknown05.json b/brandedVariable/unknown05.json new file mode 100644 index 00000000..71dbcf68 --- /dev/null +++ b/brandedVariable/unknown05.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "unknown05", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/uo_tavg-ol-hxy-sea.json b/brandedVariable/uo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..e105fca3 --- /dev/null +++ b/brandedVariable/uo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "uo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/uos_tavg-u-hxy-sea.json b/brandedVariable/uos_tavg-u-hxy-sea.json new file mode 100644 index 00000000..9badcf5a --- /dev/null +++ b/brandedVariable/uos_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "uos_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendepfd_tavg-p39-hy-air.json b/brandedVariable/utendepfd_tavg-p39-hy-air.json new file mode 100644 index 00000000..8bbc9789 --- /dev/null +++ b/brandedVariable/utendepfd_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendepfd_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendnogw_tavg-p19-hxy-air.json b/brandedVariable/utendnogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..e6a4f796 --- /dev/null +++ b/brandedVariable/utendnogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendnogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendnogw_tavg-p39-hy-air.json b/brandedVariable/utendnogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..4e812f6a --- /dev/null +++ b/brandedVariable/utendnogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendnogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendogw_tavg-p19-hxy-air.json b/brandedVariable/utendogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..8b9c91fb --- /dev/null +++ b/brandedVariable/utendogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendogw_tavg-p39-hy-air.json b/brandedVariable/utendogw_tavg-p39-hy-air.json new file mode 100644 index 00000000..4e884e66 --- /dev/null +++ b/brandedVariable/utendogw_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendogw_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendvtem_tavg-p39-hy-air.json b/brandedVariable/utendvtem_tavg-p39-hy-air.json new file mode 100644 index 00000000..fb8e9335 --- /dev/null +++ b/brandedVariable/utendvtem_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendvtem_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/utendwtem_tavg-p39-hy-air.json b/brandedVariable/utendwtem_tavg-p39-hy-air.json new file mode 100644 index 00000000..f91e2894 --- /dev/null +++ b/brandedVariable/utendwtem_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "utendwtem_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tavg-al-hxy-u.json b/brandedVariable/va_tavg-al-hxy-u.json new file mode 100644 index 00000000..ee0a94a6 --- /dev/null +++ b/brandedVariable/va_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tavg-h100m-hxy-u.json b/brandedVariable/va_tavg-h100m-hxy-u.json new file mode 100644 index 00000000..5f62fa4f --- /dev/null +++ b/brandedVariable/va_tavg-h100m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tavg-h100m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tavg-p19-hxy-air.json b/brandedVariable/va_tavg-p19-hxy-air.json new file mode 100644 index 00000000..332ae595 --- /dev/null +++ b/brandedVariable/va_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tavg-p39-hy-air.json b/brandedVariable/va_tavg-p39-hy-air.json new file mode 100644 index 00000000..13233413 --- /dev/null +++ b/brandedVariable/va_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-200hPa-hxy-u.json b/brandedVariable/va_tpt-200hPa-hxy-u.json new file mode 100644 index 00000000..83e99ebd --- /dev/null +++ b/brandedVariable/va_tpt-200hPa-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-200hPa-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-al-hxy-u.json b/brandedVariable/va_tpt-al-hxy-u.json new file mode 100644 index 00000000..0b7ebcc6 --- /dev/null +++ b/brandedVariable/va_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-al-hxys-u.json b/brandedVariable/va_tpt-al-hxys-u.json new file mode 100644 index 00000000..7dabbaa4 --- /dev/null +++ b/brandedVariable/va_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-h100m-hxy-u.json b/brandedVariable/va_tpt-h100m-hxy-u.json new file mode 100644 index 00000000..3123798b --- /dev/null +++ b/brandedVariable/va_tpt-h100m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-h100m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-p3-hxy-air.json b/brandedVariable/va_tpt-p3-hxy-air.json new file mode 100644 index 00000000..3814b34b --- /dev/null +++ b/brandedVariable/va_tpt-p3-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-p3-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-p5u-hxy-air.json b/brandedVariable/va_tpt-p5u-hxy-air.json new file mode 100644 index 00000000..9a436282 --- /dev/null +++ b/brandedVariable/va_tpt-p5u-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-p5u-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-p6-hxy-air.json b/brandedVariable/va_tpt-p6-hxy-air.json new file mode 100644 index 00000000..7a2a5946 --- /dev/null +++ b/brandedVariable/va_tpt-p6-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-p6-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/va_tpt-p7h-hxy-air.json b/brandedVariable/va_tpt-p7h-hxy-air.json new file mode 100644 index 00000000..ed4fcb6d --- /dev/null +++ b/brandedVariable/va_tpt-p7h-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "va_tpt-p7h-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vas_tavg-h10m-hxy-u.json b/brandedVariable/vas_tavg-h10m-hxy-u.json new file mode 100644 index 00000000..7b326a08 --- /dev/null +++ b/brandedVariable/vas_tavg-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vas_tavg-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vas_tpt-h10m-hxy-u.json b/brandedVariable/vas_tpt-h10m-hxy-u.json new file mode 100644 index 00000000..00a9346b --- /dev/null +++ b/brandedVariable/vas_tpt-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vas_tpt-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vas_tpt-h10m-hxys-u.json b/brandedVariable/vas_tpt-h10m-hxys-u.json new file mode 100644 index 00000000..cc63cf0b --- /dev/null +++ b/brandedVariable/vas_tpt-h10m-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vas_tpt-h10m-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vegFrac_tavg-u-hxy-u.json b/brandedVariable/vegFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..1803aa10 --- /dev/null +++ b/brandedVariable/vegFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vegFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vegHeight_tavg-u-hxy-ng.json b/brandedVariable/vegHeight_tavg-u-hxy-ng.json new file mode 100644 index 00000000..c763a128 --- /dev/null +++ b/brandedVariable/vegHeight_tavg-u-hxy-ng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vegHeight_tavg-u-hxy-ng", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vegHeight_tavg-u-hxy-shb.json b/brandedVariable/vegHeight_tavg-u-hxy-shb.json new file mode 100644 index 00000000..2466ef32 --- /dev/null +++ b/brandedVariable/vegHeight_tavg-u-hxy-shb.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vegHeight_tavg-u-hxy-shb", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vegHeight_tavg-u-hxy-tree.json b/brandedVariable/vegHeight_tavg-u-hxy-tree.json new file mode 100644 index 00000000..1a4c5915 --- /dev/null +++ b/brandedVariable/vegHeight_tavg-u-hxy-tree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vegHeight_tavg-u-hxy-tree", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vegHeight_tavg-u-hxy-veg.json b/brandedVariable/vegHeight_tavg-u-hxy-veg.json new file mode 100644 index 00000000..c34a1ca9 --- /dev/null +++ b/brandedVariable/vegHeight_tavg-u-hxy-veg.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vegHeight_tavg-u-hxy-veg", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vmo_tavg-ol-hxy-sea.json b/brandedVariable/vmo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..d67ce463 --- /dev/null +++ b/brandedVariable/vmo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vmo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vo_tavg-ol-hxy-sea.json b/brandedVariable/vo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..b94e6667 --- /dev/null +++ b/brandedVariable/vo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/volcello_tavg-ol-hxy-sea.json b/brandedVariable/volcello_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..711c24da --- /dev/null +++ b/brandedVariable/volcello_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "volcello_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/volcello_ti-ol-hxy-sea.json b/brandedVariable/volcello_ti-ol-hxy-sea.json new file mode 100644 index 00000000..8194238f --- /dev/null +++ b/brandedVariable/volcello_ti-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "volcello_ti-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/volo_tavg-u-hm-sea.json b/brandedVariable/volo_tavg-u-hm-sea.json new file mode 100644 index 00000000..af820e26 --- /dev/null +++ b/brandedVariable/volo_tavg-u-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "volo_tavg-u-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vos_tavg-u-hxy-sea.json b/brandedVariable/vos_tavg-u-hxy-sea.json new file mode 100644 index 00000000..11970c9d --- /dev/null +++ b/brandedVariable/vos_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vos_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsf_tavg-u-hxy-sea.json b/brandedVariable/vsf_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ce5d40a6 --- /dev/null +++ b/brandedVariable/vsf_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsf_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsfcorr_tavg-u-hxy-sea.json b/brandedVariable/vsfcorr_tavg-u-hxy-sea.json new file mode 100644 index 00000000..384c3012 --- /dev/null +++ b/brandedVariable/vsfcorr_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsfcorr_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsfevap_tavg-u-hxy-sea.json b/brandedVariable/vsfevap_tavg-u-hxy-sea.json new file mode 100644 index 00000000..94ee5343 --- /dev/null +++ b/brandedVariable/vsfevap_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsfevap_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsfpr_tavg-u-hxy-sea.json b/brandedVariable/vsfpr_tavg-u-hxy-sea.json new file mode 100644 index 00000000..c1b8d3e8 --- /dev/null +++ b/brandedVariable/vsfpr_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsfpr_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsfriver_tavg-u-hxy-sea.json b/brandedVariable/vsfriver_tavg-u-hxy-sea.json new file mode 100644 index 00000000..2cbb2ccc --- /dev/null +++ b/brandedVariable/vsfriver_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsfriver_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vsfsit_tavg-u-hxy-sea.json b/brandedVariable/vsfsit_tavg-u-hxy-sea.json new file mode 100644 index 00000000..9fc1c8d9 --- /dev/null +++ b/brandedVariable/vsfsit_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vsfsit_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vt100_tavg-100hPa-hy-air.json b/brandedVariable/vt100_tavg-100hPa-hy-air.json new file mode 100644 index 00000000..62f8b484 --- /dev/null +++ b/brandedVariable/vt100_tavg-100hPa-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vt100_tavg-100hPa-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vtem_tavg-p39-hy-air.json b/brandedVariable/vtem_tavg-p39-hy-air.json new file mode 100644 index 00000000..a5458b42 --- /dev/null +++ b/brandedVariable/vtem_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vtem_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vtendnogw_tavg-p19-hxy-air.json b/brandedVariable/vtendnogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..2692aa43 --- /dev/null +++ b/brandedVariable/vtendnogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vtendnogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/vtendogw_tavg-p19-hxy-air.json b/brandedVariable/vtendogw_tavg-p19-hxy-air.json new file mode 100644 index 00000000..4654111c --- /dev/null +++ b/brandedVariable/vtendogw_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "vtendogw_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wa_tavg-al-hxy-u.json b/brandedVariable/wa_tavg-al-hxy-u.json new file mode 100644 index 00000000..df8a10f8 --- /dev/null +++ b/brandedVariable/wa_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wa_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tavg-500hPa-hxy-air.json b/brandedVariable/wap_tavg-500hPa-hxy-air.json new file mode 100644 index 00000000..2f2c524c --- /dev/null +++ b/brandedVariable/wap_tavg-500hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tavg-500hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tavg-al-hxy-u.json b/brandedVariable/wap_tavg-al-hxy-u.json new file mode 100644 index 00000000..c6c3d7b0 --- /dev/null +++ b/brandedVariable/wap_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tavg-p19-hxy-air.json b/brandedVariable/wap_tavg-p19-hxy-air.json new file mode 100644 index 00000000..90e4ea6c --- /dev/null +++ b/brandedVariable/wap_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tavg-p19-hxy-u.json b/brandedVariable/wap_tavg-p19-hxy-u.json new file mode 100644 index 00000000..b7a68bf7 --- /dev/null +++ b/brandedVariable/wap_tavg-p19-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tavg-p19-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tpt-al-hxys-u.json b/brandedVariable/wap_tpt-al-hxys-u.json new file mode 100644 index 00000000..28ad12ff --- /dev/null +++ b/brandedVariable/wap_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wap_tpt-p6-hxy-air.json b/brandedVariable/wap_tpt-p6-hxy-air.json new file mode 100644 index 00000000..a28183b1 --- /dev/null +++ b/brandedVariable/wap_tpt-p6-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wap_tpt-p6-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wbgt_tavg-h2m-hxy-u.json b/brandedVariable/wbgt_tavg-h2m-hxy-u.json new file mode 100644 index 00000000..53fd521d --- /dev/null +++ b/brandedVariable/wbgt_tavg-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wbgt_tavg-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wbgt_tmax-h2m-hxy-u.json b/brandedVariable/wbgt_tmax-h2m-hxy-u.json new file mode 100644 index 00000000..22338c3e --- /dev/null +++ b/brandedVariable/wbgt_tmax-h2m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wbgt_tmax-h2m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wdir_tavg-u-hxy-sea.json b/brandedVariable/wdir_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ab1da8e6 --- /dev/null +++ b/brandedVariable/wdir_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wdir_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wdirswell_tavg-u-hxy-sea.json b/brandedVariable/wdirswell_tavg-u-hxy-sea.json new file mode 100644 index 00000000..495bef0a --- /dev/null +++ b/brandedVariable/wdirswell_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wdirswell_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wdirwindsea_tavg-u-hxy-sea.json b/brandedVariable/wdirwindsea_tavg-u-hxy-sea.json new file mode 100644 index 00000000..8e61c208 --- /dev/null +++ b/brandedVariable/wdirwindsea_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wdirwindsea_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetbc_tavg-u-hxy-u.json b/brandedVariable/wetbc_tavg-u-hxy-u.json new file mode 100644 index 00000000..507237e1 --- /dev/null +++ b/brandedVariable/wetbc_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetbc_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetdust_tavg-u-hxy-u.json b/brandedVariable/wetdust_tavg-u-hxy-u.json new file mode 100644 index 00000000..96a952b0 --- /dev/null +++ b/brandedVariable/wetdust_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetdust_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wethno3_tavg-al-hxy-u.json b/brandedVariable/wethno3_tavg-al-hxy-u.json new file mode 100644 index 00000000..9d21327e --- /dev/null +++ b/brandedVariable/wethno3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wethno3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetlandCH4_tavg-u-hxy-lnd.json b/brandedVariable/wetlandCH4_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..422bd776 --- /dev/null +++ b/brandedVariable/wetlandCH4_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetlandCH4_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetlandCH4cons_tavg-u-hxy-lnd.json b/brandedVariable/wetlandCH4cons_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..b855ff90 --- /dev/null +++ b/brandedVariable/wetlandCH4cons_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetlandCH4cons_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetlandCH4prod_tavg-u-hxy-lnd.json b/brandedVariable/wetlandCH4prod_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..f1ef26e9 --- /dev/null +++ b/brandedVariable/wetlandCH4prod_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetlandCH4prod_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetlandFrac_tavg-u-hxy-u.json b/brandedVariable/wetlandFrac_tavg-u-hxy-u.json new file mode 100644 index 00000000..15949b70 --- /dev/null +++ b/brandedVariable/wetlandFrac_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetlandFrac_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetnh3_tavg-u-hxy-u.json b/brandedVariable/wetnh3_tavg-u-hxy-u.json new file mode 100644 index 00000000..3116d88f --- /dev/null +++ b/brandedVariable/wetnh3_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetnh3_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetnh4_tavg-u-hxy-u.json b/brandedVariable/wetnh4_tavg-u-hxy-u.json new file mode 100644 index 00000000..5b028c57 --- /dev/null +++ b/brandedVariable/wetnh4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetnh4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetno3_tavg-al-hxy-u.json b/brandedVariable/wetno3_tavg-al-hxy-u.json new file mode 100644 index 00000000..80d0504f --- /dev/null +++ b/brandedVariable/wetno3_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetno3_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetnoy_tavg-u-hxy-u.json b/brandedVariable/wetnoy_tavg-u-hxy-u.json new file mode 100644 index 00000000..61fe9b09 --- /dev/null +++ b/brandedVariable/wetnoy_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetnoy_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetoa_tavg-u-hxy-u.json b/brandedVariable/wetoa_tavg-u-hxy-u.json new file mode 100644 index 00000000..6bf277c7 --- /dev/null +++ b/brandedVariable/wetoa_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetoa_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetso2_tavg-u-hxy-u.json b/brandedVariable/wetso2_tavg-u-hxy-u.json new file mode 100644 index 00000000..7298095a --- /dev/null +++ b/brandedVariable/wetso2_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetso2_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetso4_tavg-u-hxy-u.json b/brandedVariable/wetso4_tavg-u-hxy-u.json new file mode 100644 index 00000000..06730617 --- /dev/null +++ b/brandedVariable/wetso4_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetso4_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wetss_tavg-u-hxy-u.json b/brandedVariable/wetss_tavg-u-hxy-u.json new file mode 100644 index 00000000..c161bdc5 --- /dev/null +++ b/brandedVariable/wetss_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wetss_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wfcorr_tavg-u-hxy-sea.json b/brandedVariable/wfcorr_tavg-u-hxy-sea.json new file mode 100644 index 00000000..1eb55b91 --- /dev/null +++ b/brandedVariable/wfcorr_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wfcorr_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wfo_tavg-u-hxy-sea.json b/brandedVariable/wfo_tavg-u-hxy-sea.json new file mode 100644 index 00000000..541d1673 --- /dev/null +++ b/brandedVariable/wfo_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wfo_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wmo_tavg-ol-hxy-sea.json b/brandedVariable/wmo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..cac93e41 --- /dev/null +++ b/brandedVariable/wmo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wmo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wo_tavg-ol-hxy-sea.json b/brandedVariable/wo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..44783c41 --- /dev/null +++ b/brandedVariable/wo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wpdir_tavg-u-hxy-sea.json b/brandedVariable/wpdir_tavg-u-hxy-sea.json new file mode 100644 index 00000000..84bc3247 --- /dev/null +++ b/brandedVariable/wpdir_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wpdir_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wpdirswell_tavg-u-hxy-sea.json b/brandedVariable/wpdirswell_tavg-u-hxy-sea.json new file mode 100644 index 00000000..33077a37 --- /dev/null +++ b/brandedVariable/wpdirswell_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wpdirswell_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wpdirwindsea_tavg-u-hxy-sea.json b/brandedVariable/wpdirwindsea_tavg-u-hxy-sea.json new file mode 100644 index 00000000..c6d7c111 --- /dev/null +++ b/brandedVariable/wpdirwindsea_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wpdirwindsea_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wpp_tavg-u-hxy-sea.json b/brandedVariable/wpp_tavg-u-hxy-sea.json new file mode 100644 index 00000000..e9629529 --- /dev/null +++ b/brandedVariable/wpp_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wpp_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wppswell_tavg-u-hxy-sea.json b/brandedVariable/wppswell_tavg-u-hxy-sea.json new file mode 100644 index 00000000..02485259 --- /dev/null +++ b/brandedVariable/wppswell_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wppswell_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wppwindsea_tavg-u-hxy-sea.json b/brandedVariable/wppwindsea_tavg-u-hxy-sea.json new file mode 100644 index 00000000..82f3b0f2 --- /dev/null +++ b/brandedVariable/wppwindsea_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wppwindsea_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wsg_tmax-h100m-hxy-u.json b/brandedVariable/wsg_tmax-h100m-hxy-u.json new file mode 100644 index 00000000..cec5aed8 --- /dev/null +++ b/brandedVariable/wsg_tmax-h100m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wsg_tmax-h100m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wsg_tmax-h10m-hxy-u.json b/brandedVariable/wsg_tmax-h10m-hxy-u.json new file mode 100644 index 00000000..091dad6b --- /dev/null +++ b/brandedVariable/wsg_tmax-h10m-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wsg_tmax-h10m-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wtd_tavg-u-hxy-lnd.json b/brandedVariable/wtd_tavg-u-hxy-lnd.json new file mode 100644 index 00000000..2f609ff9 --- /dev/null +++ b/brandedVariable/wtd_tavg-u-hxy-lnd.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wtd_tavg-u-hxy-lnd", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/wtem_tavg-p39-hy-air.json b/brandedVariable/wtem_tavg-p39-hy-air.json new file mode 100644 index 00000000..f049836a --- /dev/null +++ b/brandedVariable/wtem_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "wtem_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/xvelbase_tavg-u-hxy-is.json b/brandedVariable/xvelbase_tavg-u-hxy-is.json new file mode 100644 index 00000000..ffc550cf --- /dev/null +++ b/brandedVariable/xvelbase_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "xvelbase_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/xvelmean_tavg-u-hxy-is.json b/brandedVariable/xvelmean_tavg-u-hxy-is.json new file mode 100644 index 00000000..4fedd0cf --- /dev/null +++ b/brandedVariable/xvelmean_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "xvelmean_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/xvelsurf_tavg-u-hxy-is.json b/brandedVariable/xvelsurf_tavg-u-hxy-is.json new file mode 100644 index 00000000..60b527e6 --- /dev/null +++ b/brandedVariable/xvelsurf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "xvelsurf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/yvelbase_tavg-u-hxy-is.json b/brandedVariable/yvelbase_tavg-u-hxy-is.json new file mode 100644 index 00000000..cbb85466 --- /dev/null +++ b/brandedVariable/yvelbase_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "yvelbase_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/yvelmean_tavg-u-hxy-is.json b/brandedVariable/yvelmean_tavg-u-hxy-is.json new file mode 100644 index 00000000..b1dc1a52 --- /dev/null +++ b/brandedVariable/yvelmean_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "yvelmean_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/yvelsurf_tavg-u-hxy-is.json b/brandedVariable/yvelsurf_tavg-u-hxy-is.json new file mode 100644 index 00000000..2a4fb656 --- /dev/null +++ b/brandedVariable/yvelsurf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "yvelsurf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zfull_ti-al-hxy-u.json b/brandedVariable/zfull_ti-al-hxy-u.json new file mode 100644 index 00000000..9df42d9c --- /dev/null +++ b/brandedVariable/zfull_ti-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zfull_ti-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zfullo_tavg-ol-hxy-sea.json b/brandedVariable/zfullo_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..5f335f7c --- /dev/null +++ b/brandedVariable/zfullo_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zfullo_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-1000hPa-hxy-air.json b/brandedVariable/zg_tavg-1000hPa-hxy-air.json new file mode 100644 index 00000000..29236559 --- /dev/null +++ b/brandedVariable/zg_tavg-1000hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-1000hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-10hPa-hxy-air.json b/brandedVariable/zg_tavg-10hPa-hxy-air.json new file mode 100644 index 00000000..6c4c4673 --- /dev/null +++ b/brandedVariable/zg_tavg-10hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-10hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-500hPa-hxy-air.json b/brandedVariable/zg_tavg-500hPa-hxy-air.json new file mode 100644 index 00000000..d7eeb73e --- /dev/null +++ b/brandedVariable/zg_tavg-500hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-500hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-al-hxy-u.json b/brandedVariable/zg_tavg-al-hxy-u.json new file mode 100644 index 00000000..0af84599 --- /dev/null +++ b/brandedVariable/zg_tavg-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-p19-hxy-air.json b/brandedVariable/zg_tavg-p19-hxy-air.json new file mode 100644 index 00000000..e2610392 --- /dev/null +++ b/brandedVariable/zg_tavg-p19-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-p19-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tavg-p39-hy-air.json b/brandedVariable/zg_tavg-p39-hy-air.json new file mode 100644 index 00000000..c70b0798 --- /dev/null +++ b/brandedVariable/zg_tavg-p39-hy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tavg-p39-hy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-500hPa-hxy-air.json b/brandedVariable/zg_tpt-500hPa-hxy-air.json new file mode 100644 index 00000000..6feb73ec --- /dev/null +++ b/brandedVariable/zg_tpt-500hPa-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-500hPa-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-700hPa-hxy-u.json b/brandedVariable/zg_tpt-700hPa-hxy-u.json new file mode 100644 index 00000000..8d155d5d --- /dev/null +++ b/brandedVariable/zg_tpt-700hPa-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-700hPa-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-925hPa-hxy-u.json b/brandedVariable/zg_tpt-925hPa-hxy-u.json new file mode 100644 index 00000000..d2a85b0e --- /dev/null +++ b/brandedVariable/zg_tpt-925hPa-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-925hPa-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-al-hxy-u.json b/brandedVariable/zg_tpt-al-hxy-u.json new file mode 100644 index 00000000..82bf0354 --- /dev/null +++ b/brandedVariable/zg_tpt-al-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-al-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-al-hxys-u.json b/brandedVariable/zg_tpt-al-hxys-u.json new file mode 100644 index 00000000..51c65437 --- /dev/null +++ b/brandedVariable/zg_tpt-al-hxys-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-al-hxys-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-p3-hxy-air.json b/brandedVariable/zg_tpt-p3-hxy-air.json new file mode 100644 index 00000000..32f41088 --- /dev/null +++ b/brandedVariable/zg_tpt-p3-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-p3-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zg_tpt-p7h-hxy-air.json b/brandedVariable/zg_tpt-p7h-hxy-air.json new file mode 100644 index 00000000..b2fbd49f --- /dev/null +++ b/brandedVariable/zg_tpt-p7h-hxy-air.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zg_tpt-p7h-hxy-air", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmeso_tavg-ol-hxy-sea.json b/brandedVariable/zmeso_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..60c3415a --- /dev/null +++ b/brandedVariable/zmeso_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmeso_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmeso_tavg-u-hxy-sea.json b/brandedVariable/zmeso_tavg-u-hxy-sea.json new file mode 100644 index 00000000..412d9988 --- /dev/null +++ b/brandedVariable/zmeso_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmeso_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmicro_tavg-ol-hxy-sea.json b/brandedVariable/zmicro_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..cea65da7 --- /dev/null +++ b/brandedVariable/zmicro_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmicro_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmicro_tavg-u-hxy-sea.json b/brandedVariable/zmicro_tavg-u-hxy-sea.json new file mode 100644 index 00000000..438ed9ef --- /dev/null +++ b/brandedVariable/zmicro_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmicro_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmisc_tavg-ol-hxy-sea.json b/brandedVariable/zmisc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..c6d570a9 --- /dev/null +++ b/brandedVariable/zmisc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmisc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zmisc_tavg-u-hxy-sea.json b/brandedVariable/zmisc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..4a68c477 --- /dev/null +++ b/brandedVariable/zmisc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zmisc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zooc_tavg-ol-hxy-sea.json b/brandedVariable/zooc_tavg-ol-hxy-sea.json new file mode 100644 index 00000000..8afff93c --- /dev/null +++ b/brandedVariable/zooc_tavg-ol-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zooc_tavg-ol-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zooc_tavg-u-hxy-sea.json b/brandedVariable/zooc_tavg-u-hxy-sea.json new file mode 100644 index 00000000..ffa9e22d --- /dev/null +++ b/brandedVariable/zooc_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zooc_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zos_tavg-u-hxy-sea.json b/brandedVariable/zos_tavg-u-hxy-sea.json new file mode 100644 index 00000000..7cc1a6d5 --- /dev/null +++ b/brandedVariable/zos_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zos_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zossq_tavg-u-hxy-sea.json b/brandedVariable/zossq_tavg-u-hxy-sea.json new file mode 100644 index 00000000..cbb90a20 --- /dev/null +++ b/brandedVariable/zossq_tavg-u-hxy-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zossq_tavg-u-hxy-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zostoga_tavg-u-hm-sea.json b/brandedVariable/zostoga_tavg-u-hm-sea.json new file mode 100644 index 00000000..a51f0c0f --- /dev/null +++ b/brandedVariable/zostoga_tavg-u-hm-sea.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zostoga_tavg-u-hm-sea", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/ztp_tavg-u-hxy-u.json b/brandedVariable/ztp_tavg-u-hxy-u.json new file mode 100644 index 00000000..6f3de31e --- /dev/null +++ b/brandedVariable/ztp_tavg-u-hxy-u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ztp_tavg-u-hxy-u", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zvelbase_tavg-u-hxy-is.json b/brandedVariable/zvelbase_tavg-u-hxy-is.json new file mode 100644 index 00000000..4f460cdb --- /dev/null +++ b/brandedVariable/zvelbase_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zvelbase_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/brandedVariable/zvelsurf_tavg-u-hxy-is.json b/brandedVariable/zvelsurf_tavg-u-hxy-is.json new file mode 100644 index 00000000..f2f21f7f --- /dev/null +++ b/brandedVariable/zvelsurf_tavg-u-hxy-is.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "zvelsurf_tavg-u-hxy-is", + "type": "known_branded_variable" +} \ No newline at end of file diff --git a/catalog_specs.yaml b/catalog_specs.yaml new file mode 100644 index 00000000..d82aa09f --- /dev/null +++ b/catalog_specs.yaml @@ -0,0 +1,135 @@ +version: v3.0.0 + +catalog_properties: + name: stac + url_template: "https://stac-extensions.github.io/{extension_name}/{extension_version}/schema.json" + extensions: + - name: file + version: v2.1.0 + +dataset_properties: + - source_collection: activity_id + catalog_field_value_type: string_array + is_required: true + - source_collection: citation_url + catalog_field_value_type: string + is_required: true + - source_collection: conventions + catalog_field_value_type: string_array + is_required: true + - source_collection: data_specs_version + catalog_field_value_type: string + is_required: true + - source_collection: experiment_id + source_collection_key: description + catalog_field_name: experiment + catalog_field_value_type: string + is_required: true + - source_collection: experiment_id + catalog_field_value_type: string + is_required: true + - source_collection: forcing_index + catalog_field_value_type: integer + is_required: true + - source_collection: frequency + catalog_field_value_type: string + is_required: true + - source_collection: further_info_url + catalog_field_value_type: string + is_required: true + - source_collection: grid_label + source_collection_key: description + catalog_field_name: grid + catalog_field_value_type: string + is_required: true + - source_collection: grid_label + catalog_field_value_type: string + is_required: true + - source_collection: initialization_index + catalog_field_value_type: integer + is_required: true + - source_collection: institution_id + source_collection_key: description + catalog_field_name: institution + catalog_field_value_type: string + is_required: true + - source_collection: institution_id + catalog_field_value_type: string + is_required: true + - source_collection: license + catalog_field_value_type: string + is_required: true + - source_collection: member_id + catalog_field_value_type: string + is_required: true + - source_collection: nominal_resolution + catalog_field_value_type: string + is_required: true + - source_collection: physics_index + catalog_field_value_type: integer + is_required: true + - source_collection: tracking_id + catalog_field_name: pid + catalog_field_value_type: string + is_required: true + - source_collection: product + catalog_field_value_type: string + is_required: true + - source_collection: realization_index + catalog_field_value_type: integer + is_required: true + - source_collection: realm + catalog_field_value_type: string_array + is_required: true + - source_collection: source_id + source_collection_key: label_extended + catalog_field_name: source + catalog_field_value_type: string + is_required: true + - source_collection: source_id + catalog_field_value_type: string + is_required: true + - source_collection: source_type + catalog_field_value_type: string_array + is_required: true + - source_collection: sub_experiment_id + source_collection_key: description + catalog_field_name: sub_experiment + catalog_field_value_type: string + is_required: true + - source_collection: sub_experiment_id + catalog_field_value_type: string + is_required: true + - source_collection: table_id + catalog_field_value_type: string + is_required: true + - source_collection: variable_id + source_collection_key: standard_name + catalog_field_name: variable_cf_standard_name + catalog_field_value_type: string + is_required: true + - source_collection: variable_id + catalog_field_value_type: string + is_required: true + - source_collection: variable_id + source_collection_key: long_name + catalog_field_name: variable_long_name + catalog_field_value_type: string + is_required: true + - source_collection: variable_id + source_collection_key: units + catalog_field_name: variable_units + catalog_field_value_type: string + is_required: true + - source_collection: variant_label + catalog_field_value_type: string + is_required: true + - source_collection: version + source_collection_term: creationdatenb + catalog_field_value_type: string + is_required: true + +file_properties: + - source_collection: tracking_id + catalog_field_value_type: string + is_required: true diff --git a/dataConventions/000_context.jsonld b/dataConventions/000_context.jsonld new file mode 100644 index 00000000..c8682554 --- /dev/null +++ b/dataConventions/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/conventions/", + "conventions": "https://espri-mod.github.io/mip-cmor-tables/conventions" + } +} diff --git a/dataConventions/cf-1.12.json b/dataConventions/cf-1.12.json new file mode 100644 index 00000000..2493fbf8 --- /dev/null +++ b/dataConventions/cf-1.12.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cf-1.12", + "type": "conventions" +} diff --git a/datasetSpecs/000_context.jsonld b/datasetSpecs/000_context.jsonld new file mode 100644 index 00000000..441c170c --- /dev/null +++ b/datasetSpecs/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/data_specs_version/", + "data_specs_version": "https://espri-mod.github.io/mip-cmor-tables/data_specs_version" + } +} diff --git a/datasetSpecs/cmip7_version.json b/datasetSpecs/cmip7_version.json new file mode 100644 index 00000000..14258638 --- /dev/null +++ b/datasetSpecs/cmip7_version.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cmip7_version", + "type": "data_specs_version" +} diff --git a/datasetVariant/000_context.jsonld b/datasetVariant/000_context.jsonld new file mode 100644 index 00000000..5fedf229 --- /dev/null +++ b/datasetVariant/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/variant_label/", + "variant_label": "https://espri-mod.github.io/mip-cmor-tables/variant_label" + } +} \ No newline at end of file diff --git a/datasetVariant/ripf.json b/datasetVariant/ripf.json new file mode 100644 index 00000000..8a1ddfbb --- /dev/null +++ b/datasetVariant/ripf.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ripf", + "type": "variant_label" +} \ No newline at end of file diff --git a/datasetVersion/000_context.jsonld b/datasetVersion/000_context.jsonld new file mode 100644 index 00000000..7c19d8d2 --- /dev/null +++ b/datasetVersion/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/directory_date/", + "directory_date": "https://espri-mod.github.io/mip-cmor-tables/directory_date" + } +} diff --git a/datasetVersion/creation_date.json b/datasetVersion/creation_date.json new file mode 100644 index 00000000..578928fe --- /dev/null +++ b/datasetVersion/creation_date.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "creationdate", + "type": "directory_date" +} diff --git a/dateCreated/000_context.jsonld b/dateCreated/000_context.jsonld new file mode 100644 index 00000000..b5b58db5 --- /dev/null +++ b/dateCreated/000_context.jsonld @@ -0,0 +1,13 @@ +{ + + "@context": { + "@base":"https://espri-mod.github.io/mip-cmor-tables/creation_date/", + "@vocab": "http://schema.org/", + "id": "@id", + "type":"@type", + "name": {"@id": "https://schema.org/name"}, + "description":{"@id":"https://schema.org/description"} + + } +} + diff --git a/dateCreated/date.json b/dateCreated/date.json new file mode 100644 index 00000000..8b176d85 --- /dev/null +++ b/dateCreated/date.json @@ -0,0 +1,8 @@ +{ + "@context": "000_context.jsonld", + "id": "date", + "description": "form: YYYY-MM-DDTHH:MM:SSZ (e.g., “2010-03-23T05:56:23Z”)", + "type": "creation_date", + "regex": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$" +} + diff --git a/drsSpecs/000_context.jsonld b/drsSpecs/000_context.jsonld new file mode 100644 index 00000000..f6bdd450 --- /dev/null +++ b/drsSpecs/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/mip_era/", + "mip_era": "https://espri-mod.github.io/mip-cmor-tables/mip_era/" + } +} diff --git a/drsSpecs/cmip7.json b/drsSpecs/cmip7.json new file mode 100644 index 00000000..a7e7d158 --- /dev/null +++ b/drsSpecs/cmip7.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cmip7", + "type": "mip_era" +} diff --git a/drs_specs.yaml b/drs_specs.yaml new file mode 100644 index 00000000..607057b1 --- /dev/null +++ b/drs_specs.yaml @@ -0,0 +1,85 @@ +# DIRECTORY DRS SPECIFICATIONS +directory: + type: directory + regex: "^CMIP7/([A-Za-z0-9-]+/){8}v[0-9]{8}$" + separator: / + parts: + - source_collection: drsSpecs + is_required: true + - source_collection: activity + is_required: true + - source_collection: institution + is_required: true + - source_collection: source + is_required: true + - source_collection: experiment + is_required: true + - source_collection: datasetVariant + is_required: true + - source_collection: region + is_required: true + - source_collection: variable + is_required: true + - source_collection: branding_suffix + is_required: true + - source_collection: gridLabel + is_required: true + - source_collection: datasetVersion + is_required: true + +# FILE NAME DRS SPECIFICATIONS +file_name: + type: file_name + regex: '^([A-Za-z0-9-]+_){5}[A-Za-z0-9-]+(?:_[0-9]{6}-[0-9]{6})?\.nc$' + separator: _ + properties: + extension: nc + extension_separator: . + parts: + - source_collection: variable + is_required: true + - source_collection: branding_suffix + is_required: true + - source_collection: reportingInterval + is_required: true + - source_collection: region + is_required: true + - source_collection: gridLabel + is_required: true + - source_collection: source + is_required: true + - source_collection: experiment + is_required: true + - source_collection: datasetVariant + is_required: true + - source_collection: timeRange + is_required: false + +# DATASET ID DRS SPECIFICATIONS +dataset_id: + type: dataset_id + regex: '^CMIP7(\\.[A-Za-z0-9-]+){10}$' + separator: . + parts: + - source_collection: drsSpecs + is_required: true + - source_collection: activity + is_required: true + - source_collection: institution + is_required: true + - source_collection: source + is_required: true + - source_collection: experiment + is_required: true + - source_collection: datasetVariant + is_required: true + - source_collection: region + is_required: true + - source_collection: variable + is_required: true + - source_collection: branding_suffix + is_required: true + - source_collection: gridLabel + is_required: true + - source_collection: datasetVersion + is_required: true diff --git a/experiment/000_context.jsonld b/experiment/000_context.jsonld new file mode 100644 index 00000000..74dc4ba5 --- /dev/null +++ b/experiment/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/experiment/", + "experiment": "https://espri-mod.github.io/mip-cmor-tables/experiment" + } +} \ No newline at end of file diff --git a/experiment/1pctco2-bgc.json b/experiment/1pctco2-bgc.json new file mode 100644 index 00000000..f3f723d4 --- /dev/null +++ b/experiment/1pctco2-bgc.json @@ -0,0 +1,15 @@ +{ + "@context": "000_context.jsonld", + "id": "1pctco2-bgc", + "type": "experiment", + "description": "1pctCO2-bgc is retained from CMIP6. It is a simulation which branches from piControl with a 1% per year increase in CO2 concentration from pre-industrial levels, with the CO2 \u201cbiogeochemically-coupled\u201d. This means that only the model\u2019s carbon cycle components (both land and ocean) respond to the increase in CO2, whereas the model\u2019s radiation code uses a constant, preindustrial concentration of CO2. The 1pctCO2 DECK simulation is required for comparison. This experiment is designed to isolate carbon-concentration and carbon climate elements of the global carbon feedbacks. It will also enable calibration of climate emulators. See Jones et al 2016: https://gmd.copernicus.org/articles/9/2853/2016/ , especially section 3.2.3 Example of use/analysis is Arora et al. 2020: https://bg.copernicus.org/articles/17/4173/2020/", + "additional_allowed_model_components": [ + "aer", + "chem", + "ism" + ], + "activity": [ + "c4mip" + ], + "experiment_id": "1pctco2-bgc" +} \ No newline at end of file diff --git a/experiment/1pctco2-rad.json b/experiment/1pctco2-rad.json new file mode 100644 index 00000000..505b5ebe --- /dev/null +++ b/experiment/1pctco2-rad.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "1pctco2-rad", + "type": "experiment", + "description": "1pctCO2-rad is retained from CMIP6. It is a simulation which branches from piControl with a 1% per year increase in CO2 concentration from pre-industrial levels, with the CO2 \u201cradiatively-coupled\u201d. This means that only the model\u2019s radiation code responds to the increase in CO2, whereas the model\u2019s carbon cycle components (both land and ocean) use a constant, preindustrial concentration of CO2. The 1pctCO2 DECK simulation is required for comparison. This experiment is designed to isolate carbon-concentration and carbon climate elements of the global carbon feedbacks. It will also enable calibration of climate emulators. See Jones et al 2016: https://gmd.copernicus.org/articles/9/2853/2016/ , especially section 3.2.3 Example of use/analysis is Arora et al. 2020: https://bg.copernicus.org/articles/17/4173/2020/", + "parent_experiment_id": [ + "piControl" + ], + "additional_allowed_model_components": [ + "aer", + "chem", + "ism" + ], + "tier": 1, + "activity": [ + "c4mip" + ], + "experiment_id": "1pctco2-rad" +} \ No newline at end of file diff --git a/experiment/1pctco2.json b/experiment/1pctco2.json new file mode 100644 index 00000000..9f77b9e2 --- /dev/null +++ b/experiment/1pctco2.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "1pctco2", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: 1 percent per year CO2 increase \n Increase CO2 concentration from pre-industrial level at 1% per year until quadrupling", + "experiment": "CO2 prescribed to increase at 1% per year", + "tier": 0, + "activity": [ + "cmip" + ], + "experiment_id": "1pctco2" +} \ No newline at end of file diff --git a/experiment/abrupt-0p5co2.json b/experiment/abrupt-0p5co2.json new file mode 100644 index 00000000..395c8eba --- /dev/null +++ b/experiment/abrupt-0p5co2.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-0p5co2", + "type": "experiment", + "activity": [ + "cfmip" + ], + "experiment_id": "abrupt-0p5co2" +} \ No newline at end of file diff --git a/experiment/abrupt-0p5xco2.json b/experiment/abrupt-0p5xco2.json new file mode 100644 index 00000000..ca3befb7 --- /dev/null +++ b/experiment/abrupt-0p5xco2.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-0p5xco2", + "type": "experiment", + "min_number_yrs_per_sim": 300, + "description": "Identical to the `piControl` DECK experiment but with a step change to 0.5xCO2 concentration from its pre-industrial value, held constant for the duration of the run. Reference: [Webb et al., 2017](https://doi.org/10.5194/gmd-10-359-2017)", + "experiment": "Abrupt halving of CO2", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "cfmip" + ], + "experiment_id": "abrupt-0p5xco2" +} \ No newline at end of file diff --git a/experiment/abrupt-127k.json b/experiment/abrupt-127k.json new file mode 100644 index 00000000..4698748d --- /dev/null +++ b/experiment/abrupt-127k.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-127k", + "type": "experiment", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "pmip" + ] +} \ No newline at end of file diff --git a/experiment/abrupt-2xco2.json b/experiment/abrupt-2xco2.json new file mode 100644 index 00000000..946ba9b8 --- /dev/null +++ b/experiment/abrupt-2xco2.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-2xco2", + "type": "experiment", + "min_number_yrs_per_sim": 300, + "description": "Identical to the `piControl` DECK experiment but with a step change to 2xCO2 concentration from its pre-industrial value, held constant for the duration of the run. Reference: [Webb et al., 2017](https://doi.org/10.5194/gmd-10-359-2017)", + "experiment": "Abrupt doubling of CO2", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "cfmip" + ], + "experiment_id": "abrupt-2xco2" +} \ No newline at end of file diff --git a/experiment/abrupt-4xco2-1950.json b/experiment/abrupt-4xco2-1950.json new file mode 100644 index 00000000..5b3e4bea --- /dev/null +++ b/experiment/abrupt-4xco2-1950.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-4xco2-1950", + "type": "experiment", + "end_year": null, + "start_year": "1950-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ], + "experiment_id": "abrupt-4xco2-1950" +} \ No newline at end of file diff --git a/experiment/abrupt-4xco2.json b/experiment/abrupt-4xco2.json new file mode 100644 index 00000000..86700773 --- /dev/null +++ b/experiment/abrupt-4xco2.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "abrupt-4xco2", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: abrupt quadrupling of CO2 \n Abrupt increase in CO2 concentration from pre-industrial level to quadrupling", + "experiment": "CO2 prescribed to 4 times preindustrial", + "tier": 0, + "activity": [ + "cmip" + ], + "experiment_id": "abrupt-4xco2" +} \ No newline at end of file diff --git a/experiment/amip-m4k.json b/experiment/amip-m4k.json new file mode 100644 index 00000000..b5bf7853 --- /dev/null +++ b/experiment/amip-m4k.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "amip-m4k", + "type": "experiment", + "min_number_yrs_per_sim": 44, + "end_year": null, + "description": "The configuration of the `amip-m4K` experiment will be the same as the Fast Track `amip-p4K` experiment, except that the sea surface temperatures are uniformly reduced by 4K rather than increased. This cooling should be applied to sea-ice-free grid boxes only. Sea ice and SSTs in grid boxes containing sea ice should remain the same as in the `amip` DECK experiment. In models which employ a fixed lower threshold near freezing for the SST used in the calculation of the surface fluxes, this should ideally also be reduced by 4K. This will support the investigation of inconsistent responses of clouds to a cooling versus a warming climate in a controlled way through comparison with the `amip-p4K` [(Ringer et al., 2023)](https://doi.org/10.1029/2023JD038861). This experiment also complements the `abrupt-0p5xCO2` experiment in that one can identify asymmetries in the warming/cooling response with and without interactions with the ocean. Reference: [Webb et al., 2017](https://doi.org/10.5194/gmd)", + "experiment": "AMIP experiment with uniform 4K SST decrease", + "start_year": "1979-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "cfmip" + ], + "experiment_id": "amip-m4k" +} \ No newline at end of file diff --git a/experiment/amip-p4k-sst-rad.json b/experiment/amip-p4k-sst-rad.json new file mode 100644 index 00000000..c699bc8f --- /dev/null +++ b/experiment/amip-p4k-sst-rad.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "amip-p4k-sst-rad", + "type": "experiment", + "end_year": null, + "start_year": "1979-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "cfmip" + ], + "experiment_id": "amip-p4k-sst-rad" +} \ No newline at end of file diff --git a/experiment/amip-p4k-sst-turb.json b/experiment/amip-p4k-sst-turb.json new file mode 100644 index 00000000..92a01548 --- /dev/null +++ b/experiment/amip-p4k-sst-turb.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "amip-p4k-sst-turb", + "type": "experiment", + "end_year": null, + "start_year": "1979-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "cfmip" + ], + "experiment_id": "amip-p4k-sst-turb" +} \ No newline at end of file diff --git a/experiment/amip-p4k.json b/experiment/amip-p4k.json new file mode 100644 index 00000000..d5118257 --- /dev/null +++ b/experiment/amip-p4k.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "amip-p4k", + "type": "experiment", + "min_number_yrs_per_sim": 44, + "end_year": null, + "description": "The same as the `amip` DECK experiment, except that SSTs are subject to a uniform warming of 4K. This warming should be applied to the ice-free ocean surface only. Sea ice and SSTs in grid boxes containing sea ice remain the same as in the `amip` DECK experiment. Reference: [Webb et al., 2017](https://doi.org/10.5194/gmd-10-359-2017)", + "experiment": "AMIP experiment with uniform 4K SST increase", + "start_year": "1979-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "cfmip" + ], + "experiment_id": "amip-p4k" +} \ No newline at end of file diff --git a/experiment/amip-piforcing.json b/experiment/amip-piforcing.json new file mode 100644 index 00000000..63ca9f8b --- /dev/null +++ b/experiment/amip-piforcing.json @@ -0,0 +1,20 @@ +{ + "@context": "000_context.jsonld", + "id": "amip-piforcing", + "type": "experiment", + "min_number_yrs_per_sim": 153, + "end_year": null, + "description": "Identical to the `amip` DECK experiment, but from 1870 to the present with constant pre-industrial forcing levels (anthropogenic and natural). Reference: [Webb et al., 2017](https://doi.org/10.5194/gmd-10-359-2017)", + "experiment": "AMIP experiment with pre-industrial forcing", + "start_year": "1870-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "cfmip" + ], + "experiment_id": "amip-piforcing" +} \ No newline at end of file diff --git a/experiment/amip.json b/experiment/amip.json new file mode 100644 index 00000000..5554be91 --- /dev/null +++ b/experiment/amip.json @@ -0,0 +1,14 @@ +{ + "@context": "000_context.jsonld", + "id": "amip", + "type": "experiment", + "min_number_yrs_per_sim": null, + "end_year": null, + "description": "DECK: AMIP \n AMIP (Atmospheric Model Intercomparison Project) experiment with prescribed SSTs and sea ice", + "experiment": "Describe amip in one sentence.", + "start_year": null, + "tier": 0, + "activity": [ + "cmip" + ] +} \ No newline at end of file diff --git a/experiment/control-1950.json b/experiment/control-1950.json new file mode 100644 index 00000000..101dfb46 --- /dev/null +++ b/experiment/control-1950.json @@ -0,0 +1,17 @@ +{ + "@context": "000_context.jsonld", + "id": "control-1950", + "type": "experiment", + "description": "Start from the end of the spinup-1950 simulation, using constant 1950s forcings. Simulate for at least 100 years, ideally 150 years. References: Roberts, M. J., Reed, K. A., Bao, Q., Barsugli, J. J., Camargo, S. J., Caron, L. P., \u2026 & Zhao, M. (2025). High-Resolution Model Intercomparison Project Phase 2 (HighResMIP2) towards CMIP7. Geoscientific Model Development, 18, 1307\u20131332 [High-Resolution Model Intercomparison Project Phase 2 (HighResMIP2) towards CMIP7.pdf](https://github.com/user-attachments/files/19393590/High-Resolution.Model.Intercomparison.Project.Phase.2.HighResMIP2.towards.CMIP7.pdf) Webpage: https://highresmip.org/experiments/experiment_cmip7/", + "experiment": "Coupled control-1950", + "start_year": "1950-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "highresmip" + ] +} \ No newline at end of file diff --git a/experiment/dcppb-forecast-cmip6.json b/experiment/dcppb-forecast-cmip6.json new file mode 100644 index 00000000..8fc4edba --- /dev/null +++ b/experiment/dcppb-forecast-cmip6.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "dcppb-forecast-cmip6", + "type": "experiment", + "start_year": "2026", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem", + "ism" + ], + "activity_id": [ + "DCPP" + ], + "activity": [ + "DCPP" + ], + "experiment_id": "dcppb-forecast-cmip6" +} \ No newline at end of file diff --git a/experiment/esm-flat10-cdr.json b/experiment/esm-flat10-cdr.json new file mode 100644 index 00000000..56028ae1 --- /dev/null +++ b/experiment/esm-flat10-cdr.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-flat10-cdr", + "type": "experiment", + "additional_allowed_model_components": [ + "aer", + "chem", + "ism" + ], + "activity": [ + "c4mip" + ] +} \ No newline at end of file diff --git a/experiment/esm-flat10-zec.json b/experiment/esm-flat10-zec.json new file mode 100644 index 00000000..21b796a5 --- /dev/null +++ b/experiment/esm-flat10-zec.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-flat10-zec", + "type": "experiment", + "additional_allowed_model_components": [ + "aer", + "chem", + "ism" + ], + "activity": [ + "c4mip" + ] +} \ No newline at end of file diff --git a/experiment/esm-flat10.json b/experiment/esm-flat10.json new file mode 100644 index 00000000..b7608c94 --- /dev/null +++ b/experiment/esm-flat10.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-flat10", + "type": "experiment", + "additional_allowed_model_components": [ + "aer", + "chem", + "ism" + ], + "activity": [ + "c4mip" + ] +} \ No newline at end of file diff --git a/experiment/esm-hist.json b/experiment/esm-hist.json new file mode 100644 index 00000000..7c3461f3 --- /dev/null +++ b/experiment/esm-hist.json @@ -0,0 +1,14 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-hist", + "type": "experiment", + "min_number_yrs_per_sim": null, + "end_year": null, + "description": "DECK: Earth System Model historical simulation \n Historical simulation with Earth System Models", + "experiment": "Simulation of the recent past (emissions driven)", + "start_year": null, + "tier": 0, + "activity": [ + "cmip" + ] +} \ No newline at end of file diff --git a/experiment/esm-picontrol.json b/experiment/esm-picontrol.json new file mode 100644 index 00000000..e3f9f748 --- /dev/null +++ b/experiment/esm-picontrol.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-picontrol", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: pre-industrial control simulation with Earth System Models \n Pre-industrial control run for Earth System Models", + "parent_experiment_id": [ + "no parent" + ], + "experiment": "Coupled atmosphere-ocean preindustrial control (emissions driven)", + "tier": 0, + "activity": [ + "cmip" + ], + "experiment_id": "esm-picontrol" +} \ No newline at end of file diff --git a/experiment/esm-up2p0-gwl2p0.json b/experiment/esm-up2p0-gwl2p0.json new file mode 100644 index 00000000..23511d80 --- /dev/null +++ b/experiment/esm-up2p0-gwl2p0.json @@ -0,0 +1,12 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-up2p0-gwl2p0", + "type": "experiment", + "additional_allowed_model_components": [ + "aer", + "chem" + ], + "activity": [ + "tipmip" + ] +} \ No newline at end of file diff --git a/experiment/esm-up2p0.json b/experiment/esm-up2p0.json new file mode 100644 index 00000000..2bf872da --- /dev/null +++ b/experiment/esm-up2p0.json @@ -0,0 +1,15 @@ +{ + "@context": "000_context.jsonld", + "id": "esm-up2p0", + "type": "experiment", + "parent_experiment_id": [ + "esm-piControl" + ], + "additional_allowed_model_components": [ + "aer", + "chem" + ], + "activity": [ + "tipmip" + ] +} \ No newline at end of file diff --git a/experiment/g7-1p5k-sai.json b/experiment/g7-1p5k-sai.json new file mode 100644 index 00000000..35b1d72e --- /dev/null +++ b/experiment/g7-1p5k-sai.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "g7-1p5k-sai", + "type": "experiment", + "activity": [ + "geomip" + ], + "experiment_id": "g7-1p5k-sai" +} \ No newline at end of file diff --git a/experiment/highres-yr2020.json b/experiment/highres-yr2020.json new file mode 100644 index 00000000..71411f55 --- /dev/null +++ b/experiment/highres-yr2020.json @@ -0,0 +1,15 @@ +{ + "@context": "000_context.jsonld", + "id": "highres-yr2020", + "type": "experiment", + "end_year": null, + "start_year": "2020-03-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ] +} \ No newline at end of file diff --git a/experiment/highressst-p2k-pat.json b/experiment/highressst-p2k-pat.json new file mode 100644 index 00000000..c87631d6 --- /dev/null +++ b/experiment/highressst-p2k-pat.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "highressst-p2k-pat", + "type": "experiment", + "end_year": null, + "start_year": "2003-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity_id": [ + "HighResMIP2" + ], + "activity": [ + "HighResMIP2" + ], + "experiment_id": "highressst-p2k-pat" +} \ No newline at end of file diff --git a/experiment/highressst-p4k-pat.json b/experiment/highressst-p4k-pat.json new file mode 100644 index 00000000..5bd0de52 --- /dev/null +++ b/experiment/highressst-p4k-pat.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "highressst-p4k-pat", + "type": "experiment", + "end_year": null, + "start_year": "2003-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ], + "experiment_id": "highressst-p4k-pat" +} \ No newline at end of file diff --git a/experiment/highressst-p4k-uni.json b/experiment/highressst-p4k-uni.json new file mode 100644 index 00000000..c70a45ae --- /dev/null +++ b/experiment/highressst-p4k-uni.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "highressst-p4k-uni", + "type": "experiment", + "end_year": null, + "start_year": "2020-03-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ], + "experiment_id": "highressst-p4k-uni" +} \ No newline at end of file diff --git a/experiment/highressst-present.json b/experiment/highressst-present.json new file mode 100644 index 00000000..8cc20866 --- /dev/null +++ b/experiment/highressst-present.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "highressst-present", + "type": "experiment", + "min_number_yrs_per_sim": 43, + "end_year": null, + "description": "1. Experiment Configuration Conduct an atmosphere-only simulation similar to CMIP AMIP for the period 1980\u20132022 using high-resolution daily forcing 2. Model Settings Initial Conditions: Use ERA5 for atmosphere and land initial conditions on 1 January 1980. Spinup: Treat 1980\u20131981 as land surface spinup. Analyze 1982\u20132022. Forcing Interpolation: Interpolate daily mean fields (no diurnal cycle) to the model grid. 3. Forcing Data Use 0.05\u00b0 ESA CCI SST v3.0 and OSI SAF sea ice concentration instead of the 1/4\u00b0 HadISST.2.2.0 dataset. 4. Key Differences from CMIP6 HighResMIP SST Forcing: Upgraded to 0.05\u00b0 ESA CCI SST. Land Spinup: 2 years recommended; alternative methods allowed if documented. For details, see: Roberts et al. (2025). High-Resolution Model Intercomparison Project phase 2 (HighResMIP2) towards CMIP7. Geoscientific Model Development, 18, 1307\u20131332", + "experiment": "AMIP historic", + "start_year": "1980-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ], + "experiment_id": "highressst-present" +} \ No newline at end of file diff --git a/experiment/hist-1950.json b/experiment/hist-1950.json new file mode 100644 index 00000000..87971b86 --- /dev/null +++ b/experiment/hist-1950.json @@ -0,0 +1,21 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-1950", + "type": "experiment", + "min_number_yrs_per_sim": 73, + "end_year": null, + "description": "Starting from the end of the spinup-1950 simulation, Use time-varying forcings from CMIP7 or CMIP6 For further details, please refer to: Roberts, M. J., Reed, K. A., Bao, Q., Barsugli, J. J., Camargo, S. J., Caron, L. P., \u2026 & Zhao, M. (2025). High-Resolution Model Intercomparison Project phase 2 (HighResMIP2) towards CMIP7. Geoscientific Model Development, 18, 1307\u20131332 [High-Resolution Model Intercomparison Project Phase 2 (HighResMIP2) towards CMIP7.pdf](https://github.com/user-attachments/files/19400815/High-Resolution.Model.Intercomparison.Project.Phase.2.HighResMIP2.towards.CMIP7.pdf) Webpage: https://highresmip.org/experiments/experiment_cmip7/", + "parent_experiment_id": [ + "no parent" + ], + "experiment": "Coupled hist-1950", + "start_year": "1950-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity": [ + "highresmip" + ] +} \ No newline at end of file diff --git a/experiment/hist-aer.json b/experiment/hist-aer.json new file mode 100644 index 00000000..39a8c51c --- /dev/null +++ b/experiment/hist-aer.json @@ -0,0 +1,20 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-aer", + "type": "experiment", + "min_number_yrs_per_sim": 186, + "end_year": null, + "description": "1. As historical but with only time evolving historical aerosols out to 2021 and then Medium scenario aerosols between 2021 and 2035. This includes changes in suphur dioxide, black carbon, organic carbon, ammonia, NOx and VOCs, from biomass burning, industrial emissions, and other sources. Other forcings held at piControl levels. 2. Coupled simulations initialized from the piControl and run to 2021 under historical aerosol emissions and thereafter to 2035 using the medium scenario with other forcings held fixed at piControl levels. 3. Coupled simulations initialized from the piControl and run to 2021 under historical aerosol emissions and thereafter to 2035 using the medium scenario with other forcings held fixed at piControl levels. 4. https://doi.org/10.5194/egusphere-2024-4086 5. As CMIP6 hist-aer. 6. Time evolving historical and then medium scenario aerosol forcings while all other forcings are held at piControl levels.", + "experiment": "hist-aer", + "start_year": "1850-01-01", + "additional_allowed_model_components": [], + "sub_experiment_id": [ + "none" + ], + "activity_id": [ + "damip" + ], + "activity": [ + "damip" + ] +} \ No newline at end of file diff --git a/experiment/hist-ghg.json b/experiment/hist-ghg.json new file mode 100644 index 00000000..f1933607 --- /dev/null +++ b/experiment/hist-ghg.json @@ -0,0 +1,21 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-ghg", + "type": "experiment", + "min_number_yrs_per_sim": 186, + "end_year": null, + "description": "1. As the historical simulation but with only the greenhouse gas forcing following that of historical out to 2021 (and the medium scenario from 2022 to 2035) and all other forcings held at pre-industrial levels. 2. As the historical simulation but with alterations to the forcings. 3. 1850 to 2035 coupled simulations with greenhouse gas forcing from the historical followed by medium scenario and all other forcings held fixed at pre-industrial control values. Stratospheric and tropospheric ozone should be held constant at piControl levels. 4. https://doi.org/10.5194/egusphere-2024-4086 5. Similar to hist-GHG from CMIP6 but sratospheric and tropospheric ozone should be held fixed. 6. Time evolving greenhouse gases from historical and then medium scenario and other forcings as in the piControl.", + "experiment": "Historical simulation with time evolving greenhouse gas forcing only and all other forcings at pre-industrial levels.", + "start_year": "1850-01-01", + "additional_allowed_model_components": [], + "sub_experiment_id": [ + "none" + ], + "activity_id": [ + "damip" + ], + "activity": [ + "damip" + ], + "experiment_id": "hist-ghg" +} \ No newline at end of file diff --git a/experiment/hist-irr.json b/experiment/hist-irr.json new file mode 100644 index 00000000..24f08c8a --- /dev/null +++ b/experiment/hist-irr.json @@ -0,0 +1,11 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-irr", + "type": "experiment", + "end_year": null, + "start_year": "1901-01-01", + "additional_allowed_model_components": [], + "activity": [ + "irrmip" + ] +} \ No newline at end of file diff --git a/experiment/hist-nat.json b/experiment/hist-nat.json new file mode 100644 index 00000000..0db2a6b0 --- /dev/null +++ b/experiment/hist-nat.json @@ -0,0 +1,21 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-nat", + "type": "experiment", + "min_number_yrs_per_sim": 186, + "end_year": null, + "description": "1. Experiment performed as the historical experiment but only with time evolving solar and volcanic forcings and pre-industrial forcings used for all other forcings. Use historical solar and volcanic forcings out to 2021 and the medium scenario solar and volcanic forcings thereafter. 2. As historical but with modified forcings. 3. Historical conditions for solar and volcanic forcings, pre-industrial conditions for everything else. 4. https://doi.org/10.5194/egusphere-2024-4086 5. Similar to hist-nat from CMIP6 but differs in the specification of ozone. In contrast to CMIP6, no time evolving ozone is prescribed in this experiment. 6. solar irradiance and stratospheric aerosol forcing are as in historical (or medium scenario after 2021), other forcings are as in piControl.", + "experiment": "Natural-only historical simulations (solar irradiance, stratospheric aerosol)", + "start_year": "1850-01-01", + "additional_allowed_model_components": [], + "sub_experiment_id": [ + "none" + ], + "tier": 1, + "activity_id": [ + "damip" + ], + "activity": [ + "damip" + ] +} \ No newline at end of file diff --git a/experiment/hist-nofire.json b/experiment/hist-nofire.json new file mode 100644 index 00000000..71af8ce4 --- /dev/null +++ b/experiment/hist-nofire.json @@ -0,0 +1,17 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-nofire", + "type": "experiment", + "end_year": null, + "parent_experiment_id": [ + "esm-piControl" + ], + "start_year": "1850-01-01", + "additional_allowed_model_components": [ + "chem" + ], + "activity": [ + "firemip" + ], + "experiment_id": "hist-nofire" +} \ No newline at end of file diff --git a/experiment/hist-noirr.json b/experiment/hist-noirr.json new file mode 100644 index 00000000..bfe60006 --- /dev/null +++ b/experiment/hist-noirr.json @@ -0,0 +1,14 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-noirr", + "type": "experiment", + "end_year": null, + "start_year": "1901-01-01", + "additional_allowed_model_components": [], + "activity_id": [ + "IRRMIP" + ], + "activity": [ + "IRRMIP" + ] +} \ No newline at end of file diff --git a/experiment/hist-piaer.json b/experiment/hist-piaer.json new file mode 100644 index 00000000..61b9f7e5 --- /dev/null +++ b/experiment/hist-piaer.json @@ -0,0 +1,31 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-piaer", + "type": "experiment", + "min_number_yrs_per_sim": 172, + "end_year": null, + "description": "1. Detailed experiment configuration Historical simulation with emissions of aerosol held at pre-industrial (1850) levels 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other historical experiments. 3. Experiment conditions. 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments: hist-piAer 6. Forcing differences from parent experiment Aerosol and their precursor emissions fixed at year-1850 values.", + "parent_experiment_id": [ + "piControl" + ], + "experiment": "Historical simulation with pre-industrial aerosol", + "start_year": "1850", + "additional_allowed_model_components": [ + "chem" + ], + "sub_experiment_id": [ + "none" + ], + "tier": 1, + "required_model_components": [ + "aer", + "aogcm" + ], + "activity_id": [ + "aerchemmip" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "hist-piaer" +} \ No newline at end of file diff --git a/experiment/hist-piaq.json b/experiment/hist-piaq.json new file mode 100644 index 00000000..6948706d --- /dev/null +++ b/experiment/hist-piaq.json @@ -0,0 +1,10 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-piaq", + "type": "experiment", + "additional_allowed_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "hist-piaq" +} \ No newline at end of file diff --git a/experiment/hist-pislcf.json b/experiment/hist-pislcf.json new file mode 100644 index 00000000..bafa63a8 --- /dev/null +++ b/experiment/hist-pislcf.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "hist-pislcf", + "type": "experiment", + "activity": [ + "aerchemmip" + ], + "experiment_id": "hist-pislcf" +} \ No newline at end of file diff --git a/experiment/historical.json b/experiment/historical.json new file mode 100644 index 00000000..94ab5879 --- /dev/null +++ b/experiment/historical.json @@ -0,0 +1,14 @@ +{ + "@context": "000_context.jsonld", + "id": "historical", + "type": "experiment", + "min_number_yrs_per_sim": null, + "end_year": null, + "description": "DECK: historical \n Simulation of the recent past", + "experiment": "Simulation of the recent past (concentration driven)", + "start_year": null, + "tier": 0, + "activity": [ + "cmip" + ] +} \ No newline at end of file diff --git a/experiment/initialised-prediction-2025-2036.json b/experiment/initialised-prediction-2025-2036.json new file mode 100644 index 00000000..bf627c89 --- /dev/null +++ b/experiment/initialised-prediction-2025-2036.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "initialised-prediction-2025-2036", + "type": "experiment", + "activity": [ + "dcpp" + ], + "experiment_id": "initialised-prediction-2025-2036" +} \ No newline at end of file diff --git a/experiment/land-hist.json b/experiment/land-hist.json new file mode 100644 index 00000000..0ca8278e --- /dev/null +++ b/experiment/land-hist.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "land-hist", + "type": "experiment", + "min_number_yrs_per_sim": 172, + "end_year": null, + "description": "This is a land-only historical simulation from 1850 to 2022. The land model configuration should be identical to that used in the DECK and CMIP7 coupled historical simulation. The forcing dataset to be used is [CRUJRA](https://catalogue.ceda.ac.uk/uuid/863a47a6d8414b6982e1396c69a9efe8/), which is also used in the TRENDY project for the Global Carbon Project. The experimental design is the same as for CMIP6 and is fully described in Section 3.1 of Van den Hurk et al. (2016). Van den Hurk, B., H. Kim, G. Krinner, S.I. Seneviratne, C. Derksen, T. Oki, H. Douville, J. Colin, A. Ducharne, F. Cheruy, M. Puma, Y. Wada, W. Li, B. Jia, A. Alessandri, D. Lawrence, G.P. Weedon, R. Ellis, S. Hagemann, J. Mao, M.G. Flanner, M. Zampieri, and R. Law, 2016. The Land Surface, Snow and Soil moisture Model Intercomparison Project - aims, setup, and expected outcome. GMD, 9, doi.org/10.5194/gmd-9-2809-2016.", + "experiment": "Historical land-only simulation", + "start_year": "1850", + "activity_id": [ + "lmip" + ], + "activity": [ + "lmip" + ] +} \ No newline at end of file diff --git a/experiment/ligabrupt.json b/experiment/ligabrupt.json new file mode 100644 index 00000000..46457e7d --- /dev/null +++ b/experiment/ligabrupt.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "ligabrupt", + "type": "experiment", + "activity": [ + "pmip" + ], + "experiment_id": "ligabrupt" +} \ No newline at end of file diff --git a/experiment/piclim-2xbvoc.json b/experiment/piclim-2xbvoc.json new file mode 100644 index 00000000..c922b508 --- /dev/null +++ b/experiment/piclim-2xbvoc.json @@ -0,0 +1,10 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xbvoc", + "type": "experiment", + "additional_allowed_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xbvoc" +} \ No newline at end of file diff --git a/experiment/piclim-2xdmsppmoa.json b/experiment/piclim-2xdmsppmoa.json new file mode 100644 index 00000000..a6f3a181 --- /dev/null +++ b/experiment/piclim-2xdmsppmoa.json @@ -0,0 +1,12 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xdmsppmoa", + "type": "experiment", + "additional_allowed_model_components": [ + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xdmsppmoa" +} \ No newline at end of file diff --git a/experiment/piclim-2xdust.json b/experiment/piclim-2xdust.json new file mode 100644 index 00000000..3ba9634f --- /dev/null +++ b/experiment/piclim-2xdust.json @@ -0,0 +1,21 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xdust", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but with mineral dust emissions scaled by a factor of 2 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim\u20132xdust 6. Forcing differences from parent experiment Doubled mineral dust emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with doubled mineral dust emissions", + "additional_allowed_model_components": [ + "chem" + ], + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xdust" +} \ No newline at end of file diff --git a/experiment/piclim-2xfire.json b/experiment/piclim-2xfire.json new file mode 100644 index 00000000..2af3a667 --- /dev/null +++ b/experiment/piclim-2xfire.json @@ -0,0 +1,22 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xfire", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but with emissions of all fire-derived gases and aerosols scaled by a factor of 2. Setup consistent with the fire parameterization in piClim-control experiments (e.g., NOx, BC, OC, CO, VOCs, CH4, DMS, SO2 or a subset of these for CHEM) 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim\u20132xfire 6. Forcing differences from parent experiment Doubled fire emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with doubled emissions of all fire-derived gases and aerosols", + "additional_allowed_model_components": [ + "chem" + ], + "tier": 2, + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xfire" +} \ No newline at end of file diff --git a/experiment/piclim-2xss.json b/experiment/piclim-2xss.json new file mode 100644 index 00000000..5c51d654 --- /dev/null +++ b/experiment/piclim-2xss.json @@ -0,0 +1,21 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xss", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim but with sea-salt emissions scaled by a factor of 2 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim\u20132xss 6. Forcing differences from parent experiment Doubled sea-salt emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with doubled sea-salt emissions", + "additional_allowed_model_components": [ + "chem" + ], + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xss" +} \ No newline at end of file diff --git a/experiment/piclim-2xwet.json b/experiment/piclim-2xwet.json new file mode 100644 index 00000000..0b2e633c --- /dev/null +++ b/experiment/piclim-2xwet.json @@ -0,0 +1,10 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-2xwet", + "type": "experiment", + "additional_allowed_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-2xwet" +} \ No newline at end of file diff --git a/experiment/piclim-4xco2.json b/experiment/piclim-4xco2.json new file mode 100644 index 00000000..71a72346 --- /dev/null +++ b/experiment/piclim-4xco2.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-4xco2", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: effective radiative forcing by 4xCO2 \n Effective radiative forcing by 4xCO2", + "experiment": "As piClim-control except CO2 concentrations set to 4 times preindustrial", + "additional_allowed_model_components": [], + "tier": 0, + "required_model_components": [], + "activity_id": [ + "cmip" + ], + "activity": [ + "cmip" + ], + "experiment_id": "piclim-4xco2" +} \ No newline at end of file diff --git a/experiment/piclim-aer.json b/experiment/piclim-aer.json new file mode 100644 index 00000000..55fa3da3 --- /dev/null +++ b/experiment/piclim-aer.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-aer", + "type": "experiment", + "description": "A time-slice simulation with present-day aerosol emissions and all other atmospheric components at pre-industrial values. Other than aerosols, model configuration should be identical to the `piClim-control` run in DECK. Simulations are run atmosphere-only, with a 12-month repeating climatology of sea surface temperatures and sea-ice distributions taken from a climatology of at least 30 years of the same model's `piControl` run. Interactive vegetation, if present in the model, should be turned on. Experiment design is identical to CMIP6 `piClim-aer` experiment. Note that the CMIP6 RFMIP reference publication (Pincus et al. 2016) referred to `piClim-aerO3` with present-day aerosols and ozone, but was replaced in favour of `piClim-aer` (Smith et al. 2020). Pincus, R., Forster, P. M., and Stevens, B.: The Radiative Forcing Model Intercomparison Project (RFMIP): experimental protocol for CMIP6, Geosci. Model Dev., 9, 3447\u20133460, https://doi.org/10.5194/gmd-9-3447-2016, 2016. Smith, C. J., Kramer, R. J., Myhre, G., Alterskj\u00e6r, K., Collins, W., Sima, A., Boucher, O., Dufresne, J.-L., Nabat, P., Michou, M., Yukimoto, S., Cole, J., Paynter, D., Shiogama, H., O'Connor, F. M., Robertson, E., Wiltshire, A., Andrews, T., Hannay, C., Miller, R., Nazarenko, L., Kirkev\u00e5g, A., Olivi\u00e9, D., Fiedler, S., Lewinschal, A., Mackallah, C., Dix, M., Pincus, R., and Forster, P. M.: Effective radiative forcing and adjustments in CMIP6 models, Atmos. Chem. Phys., 20, 9591\u20139618, https://doi.org/10.5194/acp-20-9591-2020, 2020.", + "experiment": "Effective radiative forcing by present-day aerosols", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "activity_id": [ + "rfmip" + ], + "activity": [ + "rfmip" + ], + "experiment_id": "piclim-aer" +} \ No newline at end of file diff --git a/experiment/piclim-anthro.json b/experiment/piclim-anthro.json new file mode 100644 index 00000000..7692de5c --- /dev/null +++ b/experiment/piclim-anthro.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-anthro", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: effective radiative forcing by present day anthropogenic forcings \n Effective radiative forcing by present day anthropogenic forcings", + "experiment": "As piClim-control except present-day anthropogenic forcing", + "additional_allowed_model_components": [], + "tier": 0, + "required_model_components": [], + "activity_id": [ + "cmip" + ], + "activity": [ + "cmip" + ], + "experiment_id": "piclim-anthro" +} \ No newline at end of file diff --git a/experiment/piclim-aq.json b/experiment/piclim-aq.json new file mode 100644 index 00000000..123eab35 --- /dev/null +++ b/experiment/piclim-aq.json @@ -0,0 +1,13 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-aq", + "type": "experiment", + "parent_experiment_id": [ + "piClim-control" + ], + "additional_allowed_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-aq" +} \ No newline at end of file diff --git a/experiment/piclim-bc.json b/experiment/piclim-bc.json new file mode 100644 index 00000000..d37c393d --- /dev/null +++ b/experiment/piclim-bc.json @@ -0,0 +1,22 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-bc", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but using present-day (2021) black carbon 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments Similar to piClim-BC in CMIP6 6. Forcing differences from parent experiment Present-day (2021) BC emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day emissions of black carbon", + "additional_allowed_model_components": [ + "chem" + ], + "tier": 1, + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-bc" +} \ No newline at end of file diff --git a/experiment/piclim-ch4.json b/experiment/piclim-ch4.json new file mode 100644 index 00000000..750161ff --- /dev/null +++ b/experiment/piclim-ch4.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-ch4", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim but using present-day (2021) methane emissions (or concentrations) 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. But, as a minimum, models should have tropospheric chemistry and interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. For methane, use year-2021 values in both the radiation scheme and the chemistry scheme. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-CH4 6. Forcing differences from parent experiment Present-day (2021) methane", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day methane", + "additional_allowed_model_components": [], + "required_model_components": [ + "agcm", + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-ch4" +} \ No newline at end of file diff --git a/experiment/piclim-control.json b/experiment/piclim-control.json new file mode 100644 index 00000000..98417af9 --- /dev/null +++ b/experiment/piclim-control.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-control", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: Effective radiative forcing control simulation", + "experiment": "Pre-industrial conditions, with sea surface temperature (SST/tos) and sea ice concentration (SIC/siconc) prescribed using an annually-repeating climatology from a 30-year or greater period from the piControl simulation of the host model", + "additional_allowed_model_components": [], + "tier": 0, + "required_model_components": [], + "activity_id": [ + "cmip" + ], + "activity": [ + "cmip" + ], + "experiment_id": "piclim-control" +} \ No newline at end of file diff --git a/experiment/piclim-hc.json b/experiment/piclim-hc.json new file mode 100644 index 00000000..1c563893 --- /dev/null +++ b/experiment/piclim-hc.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-hc", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "Perturbation from pre-industrial control using 1850 halocarbon concentrations \n Pre-industrial climatological SSTs and sea ice extent, 1850 halocarbon concentrations", + "parent_experiment_id": [ + "no parent" + ], + "experiment": "Describe piClim-HC in one sentence.", + "additional_allowed_model_components": [], + "tier": 0, + "required_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-hc" +} \ No newline at end of file diff --git a/experiment/piclim-histaer.json b/experiment/piclim-histaer.json new file mode 100644 index 00000000..4c6a2076 --- /dev/null +++ b/experiment/piclim-histaer.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-histaer", + "type": "experiment", + "end_year": null, + "description": "A simulation with time-varying aerosol emissions following the `historical` and ScenarioMIP `scen7-mc` scenario, and all other atmospheric components at pre-industrial values. Other than aerosols and the fact that this is a time-varying rather than time-slice experiment, model configuration should be identical to the `piClim-control` run in DECK. Simulations are run atmosphere-only, with a 12-month repeating climatology of sea surface temperatures and sea-ice distributions taken from a climatology of at least 30 years of the same model's `piControl` run. Interactive vegetation, if present in the model, should be turned on. Experiment design is similar to CMIP6 `piClim-histaer` experiment with the future scenario changed from `ssp245` to `scen7-mc`. Note that the CMIP6 RFMIP reference publication (Pincus et al. 2016) referred to `piClim-histaerO3` with time-varying aerosols and ozone, but was replaced in favour of `piClim-histaer` (Smith et al. 2021). Pincus, R., Forster, P. M., and Stevens, B.: The Radiative Forcing Model Intercomparison Project (RFMIP): experimental protocol for CMIP6, Geosci. Model Dev., 9, 3447\u20133460, https://doi.org/10.5194/gmd-9-3447-2016, 2016. Smith, C. J., Harris, G. R., Palmer, M. D., Bellouin, N., Collins, W., Myhre, G., et al. (2021). Energy budget constraints on the time history of aerosol forcing and climate sensitivity. Journal of Geophysical Research: Atmospheres, 126, e2020JD033622. https://doi.org/10.1029/2020JD033622", + "experiment": "historical and future transient effective radiative forcing from aerosols", + "start_year": "1850-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "rfmip" + ], + "experiment_id": "piclim-histaer" +} \ No newline at end of file diff --git a/experiment/piclim-histall.json b/experiment/piclim-histall.json new file mode 100644 index 00000000..9b9f1773 --- /dev/null +++ b/experiment/piclim-histall.json @@ -0,0 +1,19 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-histall", + "type": "experiment", + "end_year": null, + "description": "A simulation with *all* time-varying forcings (*both natural and anthropogenic*) following the historical and ScenarioMIP `scen7-mc` scenario. Greenhouse gases should be prescribed concentrations. Simulations are run atmosphere-only, with a 12-month repeating climatology of sea surface temperatures and sea-ice distributions taken from a climatology of at least 30 years of the same model's `piControl` run. Interactive vegetation, if present in the model, should be turned on. Experiment design is similar to CMIP6 `piClim-histall` experiment (Pincus et al. 2016) with the future scenario changed from `ssp245` to `scen7-mc`. Pincus, R., Forster, P. M., and Stevens, B.: The Radiative Forcing Model Intercomparison Project (RFMIP): experimental protocol for CMIP6, Geosci. Model Dev., 9, 3447\u20133460, https://doi.org/10.5194/gmd-9-3447-2016, 2016.", + "experiment": "historical and future transient effective radiative forcing from all forcers", + "start_year": "1850-01-01", + "additional_allowed_model_components": [ + "aer", + "bgc", + "chem" + ], + "tier": 1, + "activity": [ + "rfmip" + ], + "experiment_id": "piclim-histall" +} \ No newline at end of file diff --git a/experiment/piclim-n2o.json b/experiment/piclim-n2o.json new file mode 100644 index 00000000..124986f8 --- /dev/null +++ b/experiment/piclim-n2o.json @@ -0,0 +1,20 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-n2o", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but using present-day (2021) N2O 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. But, as a minimum, models should have stratospheric chemistry. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-N2O 6. Forcing differences from parent experiment Present-day (2021) N2O", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day nitrous oxide", + "additional_allowed_model_components": [], + "tier": 1, + "required_model_components": [ + "agcm", + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-n2o" +} \ No newline at end of file diff --git a/experiment/piclim-nh3.json b/experiment/piclim-nh3.json new file mode 100644 index 00000000..a064210f --- /dev/null +++ b/experiment/piclim-nh3.json @@ -0,0 +1,22 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-nh3", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim but using present-day (2021) ammonia emissions 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-NH3 6. Forcing differences from parent experiment Present-day (2021) ammonia emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day ammonia emissions", + "additional_allowed_model_components": [ + "chem" + ], + "tier": 1, + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-nh3" +} \ No newline at end of file diff --git a/experiment/piclim-nox.json b/experiment/piclim-nox.json new file mode 100644 index 00000000..e7736c55 --- /dev/null +++ b/experiment/piclim-nox.json @@ -0,0 +1,20 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-nox", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but using present-day (2021) NOx 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. But, as a minimum, models should have tropospheric chemistry and interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-NOx 6. Forcing differences from parent experiment Present-day (2021) NOx", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day nitrogen oxides (NOx)", + "additional_allowed_model_components": [], + "tier": 1, + "required_model_components": [ + "agcm", + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-nox" +} \ No newline at end of file diff --git a/experiment/piclim-o3.json b/experiment/piclim-o3.json new file mode 100644 index 00000000..85c9b6b4 --- /dev/null +++ b/experiment/piclim-o3.json @@ -0,0 +1,20 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-o3", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but using present-day (2021) tropospheric ozone precursors 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. But, as a minimum, models should have tropospheric chemistry and interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. For methane, use year-1850 values in the radiation scheme (2021 values in the chemistry scheme). 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments None 6. Forcing differences from parent experiment Present-day (2021) tropospheric ozone precursors", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day tropospheric ozone precursors", + "additional_allowed_model_components": [], + "tier": 1, + "required_model_components": [ + "agcm", + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-o3" +} \ No newline at end of file diff --git a/experiment/piclim-oc.json b/experiment/piclim-oc.json new file mode 100644 index 00000000..b317e7d1 --- /dev/null +++ b/experiment/piclim-oc.json @@ -0,0 +1,22 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-oc", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim but using present-day (2021) organic carbon emissions (only) 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-OC 6. Forcing differences from parent experiment Present-day (2021) OC emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day organic carbon emissions", + "additional_allowed_model_components": [ + "chem" + ], + "tier": 1, + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-oc" +} \ No newline at end of file diff --git a/experiment/piclim-ods.json b/experiment/piclim-ods.json new file mode 100644 index 00000000..41fda774 --- /dev/null +++ b/experiment/piclim-ods.json @@ -0,0 +1,10 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-ods", + "type": "experiment", + "additional_allowed_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-ods" +} \ No newline at end of file diff --git a/experiment/piclim-p4k.json b/experiment/piclim-p4k.json new file mode 100644 index 00000000..8933db4a --- /dev/null +++ b/experiment/piclim-p4k.json @@ -0,0 +1,15 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-p4k", + "type": "experiment", + "parent_experiment_id": [ + "piClim-control" + ], + "additional_allowed_model_components": [ + "chem" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-p4k" +} \ No newline at end of file diff --git a/experiment/piclim-so2.json b/experiment/piclim-so2.json new file mode 100644 index 00000000..8b59623d --- /dev/null +++ b/experiment/piclim-so2.json @@ -0,0 +1,22 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-so2", + "type": "experiment", + "description": "1. Detailed experiment configuration An atmosphere only configuration following piClim-control but using present-day (2021) sulphur dioxide (only) 2. Required model settings We encourage modelling centres to include as much atmospheric composition capability as possible. As a minimum, models should have prescribed or interactive aerosols. And the experimental setup should be consistent with other AerChemMIP2 experiments, particularly piClim-control. 3. Experiment conditions 4. Links to relevant references Fiedler et al. (in prep.) AerChemMIP2 - Unraveling the role of reactive gases, aerosols, and land use for air quality and climate change in CMIP7 5. Similarities to CMIP6 experiments piClim-SO2 6. Forcing differences from parent experiment Present-day (2021) sulphur dioxide emissions", + "parent_experiment_id": [ + "piclim-control" + ], + "experiment": "Pre-industrial climatology with present-day sulphur dioxide", + "additional_allowed_model_components": [ + "chem" + ], + "tier": 1, + "required_model_components": [ + "aer", + "agcm" + ], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-so2" +} \ No newline at end of file diff --git a/experiment/piclim-voc.json b/experiment/piclim-voc.json new file mode 100644 index 00000000..fdb58079 --- /dev/null +++ b/experiment/piclim-voc.json @@ -0,0 +1,18 @@ +{ + "@context": "000_context.jsonld", + "id": "piclim-voc", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "Perturbation from pre-industrial control using 1850 VOC emissions \n Pre-industrial climatological SSTs and sea ice extent, 1850 VOC emissions", + "parent_experiment_id": [ + "no parent" + ], + "experiment": "Describe piClim-VOC in one sentence.", + "additional_allowed_model_components": [], + "tier": 0, + "required_model_components": [], + "activity": [ + "aerchemmip" + ], + "experiment_id": "piclim-voc" +} \ No newline at end of file diff --git a/experiment/picontrol.json b/experiment/picontrol.json new file mode 100644 index 00000000..91f01be9 --- /dev/null +++ b/experiment/picontrol.json @@ -0,0 +1,16 @@ +{ + "@context": "000_context.jsonld", + "id": "picontrol", + "type": "experiment", + "min_number_yrs_per_sim": null, + "description": "DECK: pre-industrial control \n Pre-industrial control simulation", + "parent_experiment_id": [ + "no parent" + ], + "experiment": "Coupled atmosphere-ocea preindustrial control run (concentration driven)", + "tier": 0, + "activity": [ + "cmip" + ], + "experiment_id": "picontrol" +} \ No newline at end of file diff --git a/experiment/spinup-1950.json b/experiment/spinup-1950.json new file mode 100644 index 00000000..d7479163 --- /dev/null +++ b/experiment/spinup-1950.json @@ -0,0 +1,17 @@ +{ + "@context": "000_context.jsonld", + "id": "spinup-1950", + "type": "experiment", + "min_number_yrs_per_sim": 50, + "description": "This experiment is designed to provide a multidecadal spinup for coupled model simulations. Its final output will serve as initial conditions for the control-1950, hist-1950, and highres-4xCO2 scenarios. The setup follows the same design as HighResMIP1, typically run for 50 years starting from the initial conditions. For solar and ozone forcing, we suggest using an 11-year climatology centered on 1950 to average the solar cycle. For greenhouse gases (GHG), concentrations can be set to 1950 values as defined in CMIP. A 10-year mean around 1950 (e.g., 1946\u20131955 or 1950\u20131959) is recommended for aerosols and volcanic forcing. For further details, please refer to: Roberts et al. (2025). High-Resolution Model Intercomparison Project phase 2 (HighResMIP2) towards CMIP7. Geoscientific Model Development, 18, 1307\u20131332.", + "experiment": "Coupled control spinup-1950", + "additional_allowed_model_components": [ + "bgc", + "chem", + "aer" + ], + "tier": 1, + "activity": [ + "highresmip" + ] +} \ No newline at end of file diff --git a/experiment/sspx-slcf.json b/experiment/sspx-slcf.json new file mode 100644 index 00000000..d32f238c --- /dev/null +++ b/experiment/sspx-slcf.json @@ -0,0 +1,9 @@ +{ + "@context": "000_context.jsonld", + "id": "sspx-slcf", + "type": "experiment", + "activity": [ + "aerchemmip" + ], + "experiment_id": "sspx-slcf" +} \ No newline at end of file diff --git a/forcing/000_context.jsonld b/forcing/000_context.jsonld new file mode 100644 index 00000000..2fafffec --- /dev/null +++ b/forcing/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/forcing_index/", + "forcing_index": "https://espri-mod.github.io/mip-cmor-tables/forcing_index" + } +} diff --git a/forcing/multiple_digit.json b/forcing/multiple_digit.json new file mode 100644 index 00000000..0c88f825 --- /dev/null +++ b/forcing/multiple_digit.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "multiple_digit", + "type": "forcing_index" +} diff --git a/gridLabel/000_context.jsonld b/gridLabel/000_context.jsonld new file mode 100644 index 00000000..f53a2fa5 --- /dev/null +++ b/gridLabel/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/grid/", + "grid_label": "https://espri-mod.github.io/mip-cmor-tables/grid" + } +} diff --git a/gridLabel/gm.json b/gridLabel/gm.json new file mode 100644 index 00000000..2f2bedd9 --- /dev/null +++ b/gridLabel/gm.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gm", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gn.json b/gridLabel/gn.json new file mode 100644 index 00000000..cc288638 --- /dev/null +++ b/gridLabel/gn.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gn", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gna.json b/gridLabel/gna.json new file mode 100644 index 00000000..6e6145fd --- /dev/null +++ b/gridLabel/gna.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gna", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gng.json b/gridLabel/gng.json new file mode 100644 index 00000000..dc5bee17 --- /dev/null +++ b/gridLabel/gng.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gng", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gnz.json b/gridLabel/gnz.json new file mode 100644 index 00000000..7e57f3b2 --- /dev/null +++ b/gridLabel/gnz.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gnz", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr.json b/gridLabel/gr.json new file mode 100644 index 00000000..1518f0e9 --- /dev/null +++ b/gridLabel/gr.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr1.json b/gridLabel/gr1.json new file mode 100644 index 00000000..2a8ea5c1 --- /dev/null +++ b/gridLabel/gr1.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr1", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr1a.json b/gridLabel/gr1a.json new file mode 100644 index 00000000..5a783a27 --- /dev/null +++ b/gridLabel/gr1a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr1a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr1g.json b/gridLabel/gr1g.json new file mode 100644 index 00000000..c7027631 --- /dev/null +++ b/gridLabel/gr1g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr1g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr1z.json b/gridLabel/gr1z.json new file mode 100644 index 00000000..da3dd727 --- /dev/null +++ b/gridLabel/gr1z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr1z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr2.json b/gridLabel/gr2.json new file mode 100644 index 00000000..d4afa999 --- /dev/null +++ b/gridLabel/gr2.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr2", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr2a.json b/gridLabel/gr2a.json new file mode 100644 index 00000000..a93bd3e2 --- /dev/null +++ b/gridLabel/gr2a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr2a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr2g.json b/gridLabel/gr2g.json new file mode 100644 index 00000000..68adab85 --- /dev/null +++ b/gridLabel/gr2g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr2g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr2z.json b/gridLabel/gr2z.json new file mode 100644 index 00000000..d985a140 --- /dev/null +++ b/gridLabel/gr2z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr2z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr3.json b/gridLabel/gr3.json new file mode 100644 index 00000000..9743302b --- /dev/null +++ b/gridLabel/gr3.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr3", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr3a.json b/gridLabel/gr3a.json new file mode 100644 index 00000000..d0a18e74 --- /dev/null +++ b/gridLabel/gr3a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr3a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr3g.json b/gridLabel/gr3g.json new file mode 100644 index 00000000..bcdcfde1 --- /dev/null +++ b/gridLabel/gr3g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr3g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr3z.json b/gridLabel/gr3z.json new file mode 100644 index 00000000..7eb64e2a --- /dev/null +++ b/gridLabel/gr3z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr3z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr4.json b/gridLabel/gr4.json new file mode 100644 index 00000000..9191155f --- /dev/null +++ b/gridLabel/gr4.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr4", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr4a.json b/gridLabel/gr4a.json new file mode 100644 index 00000000..6474c6dc --- /dev/null +++ b/gridLabel/gr4a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr4a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr4g.json b/gridLabel/gr4g.json new file mode 100644 index 00000000..6789c60c --- /dev/null +++ b/gridLabel/gr4g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr4g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr4z.json b/gridLabel/gr4z.json new file mode 100644 index 00000000..5db3562a --- /dev/null +++ b/gridLabel/gr4z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr4z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr5.json b/gridLabel/gr5.json new file mode 100644 index 00000000..f367465d --- /dev/null +++ b/gridLabel/gr5.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr5", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr5a.json b/gridLabel/gr5a.json new file mode 100644 index 00000000..6abc3dff --- /dev/null +++ b/gridLabel/gr5a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr5a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr5g.json b/gridLabel/gr5g.json new file mode 100644 index 00000000..f7f296d8 --- /dev/null +++ b/gridLabel/gr5g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr5g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr5z.json b/gridLabel/gr5z.json new file mode 100644 index 00000000..466b4b26 --- /dev/null +++ b/gridLabel/gr5z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr5z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr6.json b/gridLabel/gr6.json new file mode 100644 index 00000000..78af5b96 --- /dev/null +++ b/gridLabel/gr6.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr6", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr6a.json b/gridLabel/gr6a.json new file mode 100644 index 00000000..f5691d3b --- /dev/null +++ b/gridLabel/gr6a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr6a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr6g.json b/gridLabel/gr6g.json new file mode 100644 index 00000000..635563e8 --- /dev/null +++ b/gridLabel/gr6g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr6g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr6z.json b/gridLabel/gr6z.json new file mode 100644 index 00000000..0e70c373 --- /dev/null +++ b/gridLabel/gr6z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr6z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr7.json b/gridLabel/gr7.json new file mode 100644 index 00000000..503ebcb5 --- /dev/null +++ b/gridLabel/gr7.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr7", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr7a.json b/gridLabel/gr7a.json new file mode 100644 index 00000000..708a2571 --- /dev/null +++ b/gridLabel/gr7a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr7a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr7g.json b/gridLabel/gr7g.json new file mode 100644 index 00000000..558d9704 --- /dev/null +++ b/gridLabel/gr7g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr7g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr7z.json b/gridLabel/gr7z.json new file mode 100644 index 00000000..3349fb5f --- /dev/null +++ b/gridLabel/gr7z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr7z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr8.json b/gridLabel/gr8.json new file mode 100644 index 00000000..f7d53a94 --- /dev/null +++ b/gridLabel/gr8.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr8", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr8a.json b/gridLabel/gr8a.json new file mode 100644 index 00000000..1d3d536b --- /dev/null +++ b/gridLabel/gr8a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr8a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr8g.json b/gridLabel/gr8g.json new file mode 100644 index 00000000..87ce96d9 --- /dev/null +++ b/gridLabel/gr8g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr8g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr8z.json b/gridLabel/gr8z.json new file mode 100644 index 00000000..a29d1bfd --- /dev/null +++ b/gridLabel/gr8z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr8z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr9.json b/gridLabel/gr9.json new file mode 100644 index 00000000..d1affd43 --- /dev/null +++ b/gridLabel/gr9.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr9", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr9a.json b/gridLabel/gr9a.json new file mode 100644 index 00000000..df455142 --- /dev/null +++ b/gridLabel/gr9a.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr9a", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr9g.json b/gridLabel/gr9g.json new file mode 100644 index 00000000..c7809866 --- /dev/null +++ b/gridLabel/gr9g.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr9g", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gr9z.json b/gridLabel/gr9z.json new file mode 100644 index 00000000..cb74ff1e --- /dev/null +++ b/gridLabel/gr9z.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gr9z", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/gra.json b/gridLabel/gra.json new file mode 100644 index 00000000..d1c0fb85 --- /dev/null +++ b/gridLabel/gra.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "gra", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/grg.json b/gridLabel/grg.json new file mode 100644 index 00000000..b8a9b085 --- /dev/null +++ b/gridLabel/grg.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "grg", + "type": "grid" +} \ No newline at end of file diff --git a/gridLabel/grz.json b/gridLabel/grz.json new file mode 100644 index 00000000..8ee31b5d --- /dev/null +++ b/gridLabel/grz.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "grz", + "type": "grid" +} \ No newline at end of file diff --git a/horizontalLabel/000_context.jsonld b/horizontalLabel/000_context.jsonld new file mode 100644 index 00000000..47e3b601 --- /dev/null +++ b/horizontalLabel/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/horizontal_label/", + "horizontal_label": "https://espri-mod.github.io/mip-cmor-tables/horizontal_label" + } +} diff --git a/horizontalLabel/hm.json b/horizontalLabel/hm.json new file mode 100644 index 00000000..7d04f92b --- /dev/null +++ b/horizontalLabel/hm.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hm", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/horizontalLabel/ht.json b/horizontalLabel/ht.json new file mode 100644 index 00000000..ff9bcd35 --- /dev/null +++ b/horizontalLabel/ht.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ht", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/horizontalLabel/hxy.json b/horizontalLabel/hxy.json new file mode 100644 index 00000000..61900e29 --- /dev/null +++ b/horizontalLabel/hxy.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hxy", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/horizontalLabel/hxys.json b/horizontalLabel/hxys.json new file mode 100644 index 00000000..74dae4d7 --- /dev/null +++ b/horizontalLabel/hxys.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hxys", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/horizontalLabel/hy.json b/horizontalLabel/hy.json new file mode 100644 index 00000000..ac408f6c --- /dev/null +++ b/horizontalLabel/hy.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hy", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/horizontalLabel/hys.json b/horizontalLabel/hys.json new file mode 100644 index 00000000..20870502 --- /dev/null +++ b/horizontalLabel/hys.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hys", + "type": "horizontal_label" +} \ No newline at end of file diff --git a/initialization/000_context.jsonld b/initialization/000_context.jsonld new file mode 100644 index 00000000..42ef1b6b --- /dev/null +++ b/initialization/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/initialisation_index/", + "initialisation_index": "https://espri-mod.github.io/mip-cmor-tables/initialisation_index" + } +} diff --git a/initialization/multiple_digit.json b/initialization/multiple_digit.json new file mode 100644 index 00000000..6bcd2d9b --- /dev/null +++ b/initialization/multiple_digit.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "multiple_digit", + "type": "initialisation_index" +} diff --git a/institution/000_context.jsonld b/institution/000_context.jsonld new file mode 100644 index 00000000..0ba2c44f --- /dev/null +++ b/institution/000_context.jsonld @@ -0,0 +1,11 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/organisation/", + "organisation": "https://espri-mod.github.io/mip-cmor-tables/organisation", + "myprop":"http://TEST", + + "established":{"@id":"https://schema.org/foundingDate"} + } +} diff --git a/institution/aer.json b/institution/aer.json new file mode 100644 index 00000000..9fc4e26b --- /dev/null +++ b/institution/aer.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "aer", + "type": "organisation", + "description": "Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA" +} \ No newline at end of file diff --git a/institution/as-rcec.json b/institution/as-rcec.json new file mode 100644 index 00000000..68101e08 --- /dev/null +++ b/institution/as-rcec.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "as-rcec", + "type": "organisation", + "description": "Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan" +} \ No newline at end of file diff --git a/institution/awi.json b/institution/awi.json new file mode 100644 index 00000000..a3390e42 --- /dev/null +++ b/institution/awi.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "awi", + "type": "organisation", + "description": "Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany" +} \ No newline at end of file diff --git a/institution/bcc.json b/institution/bcc.json new file mode 100644 index 00000000..4d9547d7 --- /dev/null +++ b/institution/bcc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "bcc", + "type": "organisation", + "description": "Beijing Climate Center, Beijing 100081, China" +} \ No newline at end of file diff --git a/institution/cams.json b/institution/cams.json new file mode 100644 index 00000000..ce5807f0 --- /dev/null +++ b/institution/cams.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cams", + "type": "organisation", + "description": "Chinese Academy of Meteorological Sciences, Beijing 100081, China" +} \ No newline at end of file diff --git a/institution/cas.json b/institution/cas.json new file mode 100644 index 00000000..12d5dd17 --- /dev/null +++ b/institution/cas.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cas", + "type": "organisation", + "description": "Chinese Academy of Sciences, Beijing 100029, China" +} \ No newline at end of file diff --git a/institution/cccma.json b/institution/cccma.json new file mode 100644 index 00000000..11fe2fca --- /dev/null +++ b/institution/cccma.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cccma", + "type": "organisation", + "description": "Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada" +} \ No newline at end of file diff --git a/institution/cccr-iitm.json b/institution/cccr-iitm.json new file mode 100644 index 00000000..10f9f09e --- /dev/null +++ b/institution/cccr-iitm.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cccr-iitm", + "type": "organisation", + "description": "Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India" +} \ No newline at end of file diff --git a/institution/cmcc.json b/institution/cmcc.json new file mode 100644 index 00000000..bbf6dc64 --- /dev/null +++ b/institution/cmcc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cmcc", + "type": "organisation", + "description": "Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy" +} \ No newline at end of file diff --git a/institution/cnrm-cerfacs.json b/institution/cnrm-cerfacs.json new file mode 100644 index 00000000..a4c82347 --- /dev/null +++ b/institution/cnrm-cerfacs.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "cnrm-cerfacs", + "type": "organisation", + "description": "CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)" +} \ No newline at end of file diff --git a/institution/csiro-arccss.json b/institution/csiro-arccss.json new file mode 100644 index 00000000..dbe4516f --- /dev/null +++ b/institution/csiro-arccss.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "csiro-arccss", + "type": "organisation", + "description": "CSIRO (Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia), ARCCSS (Australian Research Council Centre of Excellence for Climate System Science). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia" +} \ No newline at end of file diff --git a/institution/csiro-cosima.json b/institution/csiro-cosima.json new file mode 100644 index 00000000..beffaf75 --- /dev/null +++ b/institution/csiro-cosima.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "csiro-cosima", + "type": "organisation", + "description": "CSIRO (Commonwealth Scientific and Industrial Research Organisation, Australia), COSIMA (Consortium for Ocean-Sea Ice Modelling in Australia). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia" +} \ No newline at end of file diff --git a/institution/csiro.json b/institution/csiro.json new file mode 100644 index 00000000..9825309b --- /dev/null +++ b/institution/csiro.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "csiro", + "type": "organisation", + "description": "Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia" +} \ No newline at end of file diff --git a/institution/dkrz.json b/institution/dkrz.json new file mode 100644 index 00000000..cb12a943 --- /dev/null +++ b/institution/dkrz.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "dkrz", + "type": "organisation", + "description": "Deutsches Klimarechenzentrum, Hamburg 20146, Germany" +} \ No newline at end of file diff --git a/institution/dwd.json b/institution/dwd.json new file mode 100644 index 00000000..9782e248 --- /dev/null +++ b/institution/dwd.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "dwd", + "type": "organisation", + "description": "Deutscher Wetterdienst, Offenbach am Main 63067, Germany" +} \ No newline at end of file diff --git a/institution/e3sm-project.json b/institution/e3sm-project.json new file mode 100644 index 00000000..0099943c --- /dev/null +++ b/institution/e3sm-project.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "e3sm-project", + "type": "organisation", + "description": "LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA" +} \ No newline at end of file diff --git a/institution/ec-earth-consortium.json b/institution/ec-earth-consortium.json new file mode 100644 index 00000000..87758667 --- /dev/null +++ b/institution/ec-earth-consortium.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ec-earth-consortium", + "type": "organisation", + "description": "AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden" +} \ No newline at end of file diff --git a/institution/ecmwf.json b/institution/ecmwf.json new file mode 100644 index 00000000..127b052e --- /dev/null +++ b/institution/ecmwf.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ecmwf", + "type": "organisation", + "description": "European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK" +} \ No newline at end of file diff --git a/institution/fio-qlnm.json b/institution/fio-qlnm.json new file mode 100644 index 00000000..5f34455f --- /dev/null +++ b/institution/fio-qlnm.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "fio-qlnm", + "type": "organisation", + "description": "FIO (First Institute of Oceanography, Ministry of Natural Resources, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)" +} \ No newline at end of file diff --git a/institution/hammoz-consortium.json b/institution/hammoz-consortium.json new file mode 100644 index 00000000..e3495fb2 --- /dev/null +++ b/institution/hammoz-consortium.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "hammoz-consortium", + "type": "organisation", + "description": "ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland" +} \ No newline at end of file diff --git a/institution/inm.json b/institution/inm.json new file mode 100644 index 00000000..1d3e382e --- /dev/null +++ b/institution/inm.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "inm", + "type": "organisation", + "description": "Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia" +} \ No newline at end of file diff --git a/institution/ipsl.json b/institution/ipsl.json new file mode 100644 index 00000000..4029d588 --- /dev/null +++ b/institution/ipsl.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ipsl", + "type": "organisation", + "description": "Institut Pierre Simon Laplace, Paris 75252, France" +} \ No newline at end of file diff --git a/institution/kiost.json b/institution/kiost.json new file mode 100644 index 00000000..827911e2 --- /dev/null +++ b/institution/kiost.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "kiost", + "type": "organisation", + "description": "Korea Institute of Ocean Science and Technology, Busan 49111, Republic of Korea" +} \ No newline at end of file diff --git a/institution/llnl.json b/institution/llnl.json new file mode 100644 index 00000000..58192d14 --- /dev/null +++ b/institution/llnl.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "llnl", + "type": "organisation", + "description": "Lawrence Livermore National Laboratory, Livermore, CA 94550, USA. Mailing address: LLNL Climate Program, c/o Stephen A. Klein, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA" +} \ No newline at end of file diff --git a/institution/messy-consortium.json b/institution/messy-consortium.json new file mode 100644 index 00000000..a7bc677e --- /dev/null +++ b/institution/messy-consortium.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "messy-consortium", + "type": "organisation", + "description": "The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany" +} \ No newline at end of file diff --git a/institution/miroc.json b/institution/miroc.json new file mode 100644 index 00000000..2705d58d --- /dev/null +++ b/institution/miroc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "miroc", + "type": "organisation", + "description": "JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)" +} \ No newline at end of file diff --git a/institution/mohc.json b/institution/mohc.json new file mode 100644 index 00000000..b7772fbf --- /dev/null +++ b/institution/mohc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "mohc", + "type": "organisation", + "description": "Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK" +} \ No newline at end of file diff --git a/institution/mpi-m.json b/institution/mpi-m.json new file mode 100644 index 00000000..97aff06f --- /dev/null +++ b/institution/mpi-m.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "mpi-m", + "type": "organisation", + "description": "Max Planck Institute for Meteorology, Hamburg 20146, Germany" +} \ No newline at end of file diff --git a/institution/mri.json b/institution/mri.json new file mode 100644 index 00000000..e70560a7 --- /dev/null +++ b/institution/mri.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "mri", + "type": "organisation", + "description": "Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan" +} \ No newline at end of file diff --git a/institution/nasa-giss.json b/institution/nasa-giss.json new file mode 100644 index 00000000..78612733 --- /dev/null +++ b/institution/nasa-giss.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "nasa-giss", + "type": "organisation", + "description": "Goddard Institute for Space Studies, New York, NY 10025, USA" +} \ No newline at end of file diff --git a/institution/nasa-gsfc.json b/institution/nasa-gsfc.json new file mode 100644 index 00000000..3308aada --- /dev/null +++ b/institution/nasa-gsfc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "nasa-gsfc", + "type": "organisation", + "description": "NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA" +} \ No newline at end of file diff --git a/institution/ncar.json b/institution/ncar.json new file mode 100644 index 00000000..217a13c7 --- /dev/null +++ b/institution/ncar.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ncar", + "type": "organisation", + "description": "National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA" +} \ No newline at end of file diff --git a/institution/ncc.json b/institution/ncc.json new file mode 100644 index 00000000..b0f248b7 --- /dev/null +++ b/institution/ncc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ncc", + "type": "organisation", + "description": "NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway" +} \ No newline at end of file diff --git a/institution/nerc.json b/institution/nerc.json new file mode 100644 index 00000000..9b8080dc --- /dev/null +++ b/institution/nerc.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "nerc", + "type": "organisation", + "description": "Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK" +} \ No newline at end of file diff --git a/institution/nims-kma.json b/institution/nims-kma.json new file mode 100644 index 00000000..81e1666b --- /dev/null +++ b/institution/nims-kma.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "nims-kma", + "type": "organisation", + "description": "National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea" +} \ No newline at end of file diff --git a/institution/niwa.json b/institution/niwa.json new file mode 100644 index 00000000..96049def --- /dev/null +++ b/institution/niwa.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "niwa", + "type": "organisation", + "description": "National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand" +} \ No newline at end of file diff --git a/institution/noaa-gfdl.json b/institution/noaa-gfdl.json new file mode 100644 index 00000000..a19a2b02 --- /dev/null +++ b/institution/noaa-gfdl.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "noaa-gfdl", + "type": "organisation", + "description": "National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA" +} \ No newline at end of file diff --git a/institution/ntu.json b/institution/ntu.json new file mode 100644 index 00000000..a52a5c39 --- /dev/null +++ b/institution/ntu.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ntu", + "type": "organisation", + "description": "National Taiwan University, Taipei 10650, Taiwan" +} \ No newline at end of file diff --git a/institution/nuist.json b/institution/nuist.json new file mode 100644 index 00000000..2c8b0db0 --- /dev/null +++ b/institution/nuist.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "nuist", + "type": "organisation", + "description": "Nanjing University of Information Science and Technology, Nanjing, 210044, China" +} \ No newline at end of file diff --git a/institution/pcmdi.json b/institution/pcmdi.json new file mode 100644 index 00000000..1a2aa374 --- /dev/null +++ b/institution/pcmdi.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "pcmdi", + "type": "organisation", + "description": "Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA" +} \ No newline at end of file diff --git a/institution/pnnl-waccem.json b/institution/pnnl-waccem.json new file mode 100644 index 00000000..73ccfd2a --- /dev/null +++ b/institution/pnnl-waccem.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "pnnl-waccem", + "type": "organisation", + "description": "PNNL (Pacific Northwest National Laboratory), Richland, WA 99352, USA" +} \ No newline at end of file diff --git a/institution/rte-rrtmgp-consortium.json b/institution/rte-rrtmgp-consortium.json new file mode 100644 index 00000000..134cd771 --- /dev/null +++ b/institution/rte-rrtmgp-consortium.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "rte-rrtmgp-consortium", + "type": "organisation", + "description": "AER (Atmospheric and Environmental Research, Lexington, MA 02421, USA); UColorado (University of Colorado, Boulder, CO 80309, USA). Mailing address: AER c/o Eli Mlawer, 131 Hartwell Avenue, Lexington, MA 02421, USA" +} \ No newline at end of file diff --git a/institution/rubisco.json b/institution/rubisco.json new file mode 100644 index 00000000..8d327af1 --- /dev/null +++ b/institution/rubisco.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "rubisco", + "type": "organisation", + "description": "ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); NAU (Northern Arizona University, Flagstaff, AZ 86011, USA); NCAR (National Center for Atmospheric Research, Boulder, CO 80305, USA); UCI (University of California Irvine, Irvine, CA 92697, USA); UM (University of Michigan, Ann Arbor, MI 48109, USA). Mailing address: ORNL Climate Change Science Institute, c/o Forrest M. Hoffman, Laboratory Research Manager, Building 4500N Room F106, 1 Bethel Valley Road, Oak Ridge, TN 37831-6301, USA" +} \ No newline at end of file diff --git a/institution/snu.json b/institution/snu.json new file mode 100644 index 00000000..0524bfbd --- /dev/null +++ b/institution/snu.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "snu", + "type": "organisation", + "description": "Seoul National University, Seoul 08826, Republic of Korea" +} \ No newline at end of file diff --git a/institution/thu.json b/institution/thu.json new file mode 100644 index 00000000..eddd2dbb --- /dev/null +++ b/institution/thu.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "thu", + "type": "organisation", + "description": "Department of Earth System Science, Tsinghua University, Beijing 100084, China" +} \ No newline at end of file diff --git a/institution/ua.json b/institution/ua.json new file mode 100644 index 00000000..03e85b96 --- /dev/null +++ b/institution/ua.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ua", + "type": "organisation", + "description": "Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA" +} \ No newline at end of file diff --git a/institution/uci.json b/institution/uci.json new file mode 100644 index 00000000..859ba296 --- /dev/null +++ b/institution/uci.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "uci", + "type": "organisation", + "description": "Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA" +} \ No newline at end of file diff --git a/institution/ucsb.json b/institution/ucsb.json new file mode 100644 index 00000000..4d664c01 --- /dev/null +++ b/institution/ucsb.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "ucsb", + "type": "organisation", + "description": "Bren School of Environmental Science and Management, University of California, Santa Barbara. Mailing address: c/o Samantha Stevenson, 2400 Bren Hall, University of California Santa Barbara, Santa Barbara, CA 93106, USA" +} \ No newline at end of file diff --git a/institution/uhh.json b/institution/uhh.json new file mode 100644 index 00000000..293bd7fb --- /dev/null +++ b/institution/uhh.json @@ -0,0 +1,6 @@ +{ + "@context": "000_context.jsonld", + "id": "uhh", + "type": "organisation", + "description": "Universitat Hamburg, Hamburg 20148, Germany" +} \ No newline at end of file diff --git a/license/000_context.jsonld b/license/000_context.jsonld new file mode 100644 index 00000000..0ffad863 --- /dev/null +++ b/license/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/license/", + "license": "https://espri-mod.github.io/mip-cmor-tables/license" + } +} diff --git a/license/cc_by_4.0.json b/license/cc_by_4.0.json new file mode 100644 index 00000000..29d7e524 --- /dev/null +++ b/license/cc_by_4.0.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "cc_by_4.0", + "type": "license" +} \ No newline at end of file diff --git a/nominalResolution/0.5km.json b/nominalResolution/0.5km.json new file mode 100644 index 00000000..f65acb5f --- /dev/null +++ b/nominalResolution/0.5km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "0.5km", + "type": "resolution" +} diff --git a/nominalResolution/000_context.jsonld b/nominalResolution/000_context.jsonld new file mode 100644 index 00000000..99d82dbc --- /dev/null +++ b/nominalResolution/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/resolution/", + "resolution": "https://espri-mod.github.io/mip-cmor-tables/resolution" + } +} diff --git a/nominalResolution/10000km.json b/nominalResolution/10000km.json new file mode 100644 index 00000000..fadfcb60 --- /dev/null +++ b/nominalResolution/10000km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "10000km", + "type": "resolution" +} diff --git a/nominalResolution/1000km.json b/nominalResolution/1000km.json new file mode 100644 index 00000000..48aede7d --- /dev/null +++ b/nominalResolution/1000km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1000km", + "type": "resolution" +} diff --git a/nominalResolution/100km.json b/nominalResolution/100km.json new file mode 100644 index 00000000..f0e4c188 --- /dev/null +++ b/nominalResolution/100km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "100km", + "type": "resolution" +} diff --git a/nominalResolution/10km.json b/nominalResolution/10km.json new file mode 100644 index 00000000..bd1b9723 --- /dev/null +++ b/nominalResolution/10km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "10km", + "type": "resolution" +} diff --git a/nominalResolution/1km.json b/nominalResolution/1km.json new file mode 100644 index 00000000..e4368c45 --- /dev/null +++ b/nominalResolution/1km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1km", + "type": "resolution" +} diff --git a/nominalResolution/1x1degree.json b/nominalResolution/1x1degree.json new file mode 100644 index 00000000..8529d5dd --- /dev/null +++ b/nominalResolution/1x1degree.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1x1degree", + "type": "resolution" +} diff --git a/nominalResolution/2.5km.json b/nominalResolution/2.5km.json new file mode 100644 index 00000000..91c05e94 --- /dev/null +++ b/nominalResolution/2.5km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "2.5km", + "type": "resolution" +} diff --git a/nominalResolution/2500km.json b/nominalResolution/2500km.json new file mode 100644 index 00000000..9afbe036 --- /dev/null +++ b/nominalResolution/2500km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "2500km", + "type": "resolution" +} diff --git a/nominalResolution/250km.json b/nominalResolution/250km.json new file mode 100644 index 00000000..62a9170e --- /dev/null +++ b/nominalResolution/250km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "250km", + "type": "resolution" +} diff --git a/nominalResolution/25km.json b/nominalResolution/25km.json new file mode 100644 index 00000000..8d9cb77d --- /dev/null +++ b/nominalResolution/25km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "25km", + "type": "resolution" +} diff --git a/nominalResolution/5000km.json b/nominalResolution/5000km.json new file mode 100644 index 00000000..7012c871 --- /dev/null +++ b/nominalResolution/5000km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "5000km", + "type": "resolution" +} diff --git a/nominalResolution/500km.json b/nominalResolution/500km.json new file mode 100644 index 00000000..0238e2ed --- /dev/null +++ b/nominalResolution/500km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "500km", + "type": "resolution" +} diff --git a/nominalResolution/50km.json b/nominalResolution/50km.json new file mode 100644 index 00000000..710ca28c --- /dev/null +++ b/nominalResolution/50km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "50km", + "type": "resolution" +} diff --git a/nominalResolution/5km.json b/nominalResolution/5km.json new file mode 100644 index 00000000..40683cf0 --- /dev/null +++ b/nominalResolution/5km.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "5km", + "type": "resolution" +} diff --git a/physics/000_context.jsonld b/physics/000_context.jsonld new file mode 100644 index 00000000..d3d5381c --- /dev/null +++ b/physics/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/physic_index/", + "physic_index": "https://espri-mod.github.io/mip-cmor-tables/physic_index" + } +} diff --git a/physics/multiple_digit.json b/physics/multiple_digit.json new file mode 100644 index 00000000..4fd42585 --- /dev/null +++ b/physics/multiple_digit.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "multiple_digit", + "type": "physic_index" +} diff --git a/project_specs.json b/project_specs.json new file mode 100644 index 00000000..b06ab2f1 --- /dev/null +++ b/project_specs.json @@ -0,0 +1,293 @@ +{ + "project_id": "cmip7", + "description": "todo", + "drs_specs": [ + { + "type": "directory", + "separator": "/", + "parts": [ + { + "collection_id": "drsSpecs", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "activity", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "institution", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "source", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "experiment", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "datasetVariant", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "region", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "reportingInterval", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "brandedVariable", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "gridLabel", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "datasetVersion", + "is_required": true, + "kind": "collection" + } + ] + }, + { + "type": "file_name", + "separator": "_", + "properties": { + "extension": "nc", + "extension_separator": "." + }, + "parts": [ + { + "collection_id": "brandedVariable", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "reportingInterval", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "region", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "gridLabel", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "source", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "experiment", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "datasetVariant", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "timeRange", + "is_required": false, + "kind": "collection" + } + ] + }, + { + "type": "dataset_id", + "separator": ".", + "parts": [ + { + "collection_id": "drsSpecs", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "activity", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "institution", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "source", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "experiment", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "datasetVariant", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "region", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "reportingInterval", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "brandedVariable", + "is_required": true, + "kind": "collection" + }, + { + "collection_id": "gridLabel", + "is_required": true, + "kind": "collection" + } + ] + } + ], + "global_attributes_specs": { + "specs": { + "branded_variable": { + "source_collection": "brandedVariable", + "value_type": "string" + }, + "temporal_label": { + "source_collection": "temporalLabel", + "value_type": "string" + }, + "vertical_label": { + "source_collection": "verticalLabel", + "value_type": "string" + }, + "horizontal_label": { + "source_collection": "horizontalLabel", + "value_type": "string" + }, + "area_label": { + "source_collection": "areaLabel", + "value_type": "string" + }, + "frequency": { + "source_collection": "reportingInterval", + "value_type": "string" + }, + "region": { + "source_collection": "region", + "value_type": "string" + }, + "grid": { + "source_collection": "gridLabel", + "value_type": "string" + }, + "source_id": { + "source_collection": "source", + "value_type": "string" + }, + "experiment_id": { + "source_collection": "experiment", + "value_type": "string" + }, + "variant_label": { + "source_collection": "datasetVariant", + "value_type": "string" + }, + "host_collection": { + "source_collection": "hostCollection", + "value_type": "string" + }, + "activity_id": { + "source_collection": "activity", + "value_type": "string" + }, + "drs_specs": { + "source_collection": "drsSpecs", + "value_type": "string" + }, + "directory_date": { + "source_collection": "datasetVersion", + "value_type": "string" + }, + "time_range": { + "source_collection": "timeRange", + "value_type": "string" + }, + "resolution": { + "source_collection": "nominalResolution", + "value_type": "string" + }, + "institution_id": { + "source_collection": "institution", + "value_type": "string" + }, + "realm": { + "source_collection": "realm", + "value_type": "string" + }, + "license": { + "source_collection": "license", + "value_type": "string" + }, + "archive_id": { + "source_collection": "archive", + "value_type": "string" + }, + "conventions": { + "source_collection": "dataConventions", + "value_type": "string" + }, + "creation_date": { + "source_collection": "dateCreated", + "value_type": "string" + }, + "realisation_index": { + "source_collection": "realisation", + "value_type": "string" + }, + "initialisation_index": { + "source_collection": "initialization", + "value_type": "string" + }, + "physic_index": { + "source_collection": "physics", + "value_type": "string" + }, + "forcing_index": { + "source_collection": "forcing", + "value_type": "string" + }, + "tracking_id": { + "source_collection": "uniqueField", + "value_type": "string" + }, + "data_specs_version": { + "source_collection": "datasetSpecs", + "value_type": "string" + } + } + } +} diff --git a/project_specs.yaml b/project_specs.yaml new file mode 100644 index 00000000..4765a69f --- /dev/null +++ b/project_specs.yaml @@ -0,0 +1,2 @@ +project_id: cmip7 +description: todo diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..35d484e9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "cmip7-cvs" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "requests>=2.32.5", + "esgvoc>=1.1.2", + "icecream>=2.1.7", + "jupyter-console>=6.6.3", + "devtools>=0.12.2", +] +# [tool.uv.sources] +# esgvoc = { git = "https://github.com/ESGF/esgf-vocab.git", branch = "integration" } diff --git a/realisation/000_context.jsonld b/realisation/000_context.jsonld new file mode 100644 index 00000000..3180849d --- /dev/null +++ b/realisation/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/realisation_index/", + "realisation_index": "https://espri-mod.github.io/mip-cmor-tables/realisation_index" + } +} diff --git a/realisation/multiple_digit.json b/realisation/multiple_digit.json new file mode 100644 index 00000000..f5a6bd9f --- /dev/null +++ b/realisation/multiple_digit.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "multiple_digit", + "type": "realisation_index" +} diff --git a/realm/000_context.jsonld b/realm/000_context.jsonld new file mode 100644 index 00000000..1ae7d83a --- /dev/null +++ b/realm/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/realm/", + "realm": "https://espri-mod.github.io/mip-cmor-tables/realm" + } +} diff --git a/realm/aerosol.json b/realm/aerosol.json new file mode 100644 index 00000000..59637f9a --- /dev/null +++ b/realm/aerosol.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "aerosol", + "type": "realm" +} \ No newline at end of file diff --git a/realm/atmos.json b/realm/atmos.json new file mode 100644 index 00000000..f9488cc1 --- /dev/null +++ b/realm/atmos.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "atmos", + "type": "realm" +} \ No newline at end of file diff --git a/realm/atmosChem.json b/realm/atmosChem.json new file mode 100644 index 00000000..c0453e05 --- /dev/null +++ b/realm/atmosChem.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "atmosChem", + "type": "realm" +} \ No newline at end of file diff --git a/realm/land.json b/realm/land.json new file mode 100644 index 00000000..b27d6a5d --- /dev/null +++ b/realm/land.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "land", + "type": "realm" +} \ No newline at end of file diff --git a/realm/landIce.json b/realm/landIce.json new file mode 100644 index 00000000..fcd94002 --- /dev/null +++ b/realm/landIce.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "landIce", + "type": "realm" +} \ No newline at end of file diff --git a/realm/ocean.json b/realm/ocean.json new file mode 100644 index 00000000..933fb3ec --- /dev/null +++ b/realm/ocean.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocean", + "type": "realm" +} \ No newline at end of file diff --git a/realm/ocnBgchem.json b/realm/ocnBgchem.json new file mode 100644 index 00000000..e31297b6 --- /dev/null +++ b/realm/ocnBgchem.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ocnBgchem", + "type": "realm" +} \ No newline at end of file diff --git a/realm/seaIce.json b/realm/seaIce.json new file mode 100644 index 00000000..d803babe --- /dev/null +++ b/realm/seaIce.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "seaIce", + "type": "realm" +} \ No newline at end of file diff --git a/region/000_context.jsonld b/region/000_context.jsonld new file mode 100644 index 00000000..4e078f0d --- /dev/null +++ b/region/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/region/", + "region": "https://espri-mod.github.io/mip-cmor-tables/region" + } +} diff --git a/region/global.json b/region/global.json new file mode 100644 index 00000000..b229dd7f --- /dev/null +++ b/region/global.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "global", + "type": "region" +} \ No newline at end of file diff --git a/reportingInterval/000_context.jsonld b/reportingInterval/000_context.jsonld new file mode 100644 index 00000000..3f8e8af1 --- /dev/null +++ b/reportingInterval/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/frequency/", + "frequency": "https://espri-mod.github.io/mip-cmor-tables/frequency" + } +} diff --git a/reportingInterval/1hr.json b/reportingInterval/1hr.json new file mode 100644 index 00000000..6a9495eb --- /dev/null +++ b/reportingInterval/1hr.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1hr", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/1hrCM.json b/reportingInterval/1hrCM.json new file mode 100644 index 00000000..e6467cf7 --- /dev/null +++ b/reportingInterval/1hrCM.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1hrCM", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/1hrPt.json b/reportingInterval/1hrPt.json new file mode 100644 index 00000000..64223f91 --- /dev/null +++ b/reportingInterval/1hrPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1hrPt", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/3hr.json b/reportingInterval/3hr.json new file mode 100644 index 00000000..0b403144 --- /dev/null +++ b/reportingInterval/3hr.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "3hr", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/3hrPt.json b/reportingInterval/3hrPt.json new file mode 100644 index 00000000..a196706f --- /dev/null +++ b/reportingInterval/3hrPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "3hrPt", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/6hr.json b/reportingInterval/6hr.json new file mode 100644 index 00000000..691c1e1f --- /dev/null +++ b/reportingInterval/6hr.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "6hr", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/6hrPt.json b/reportingInterval/6hrPt.json new file mode 100644 index 00000000..b164543d --- /dev/null +++ b/reportingInterval/6hrPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "6hrPt", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/day.json b/reportingInterval/day.json new file mode 100644 index 00000000..ad43502f --- /dev/null +++ b/reportingInterval/day.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "day", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/dec.json b/reportingInterval/dec.json new file mode 100644 index 00000000..b1fe90fb --- /dev/null +++ b/reportingInterval/dec.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "dec", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/fx.json b/reportingInterval/fx.json new file mode 100644 index 00000000..f6acfef2 --- /dev/null +++ b/reportingInterval/fx.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "fx", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/mon.json b/reportingInterval/mon.json new file mode 100644 index 00000000..ecfeba8c --- /dev/null +++ b/reportingInterval/mon.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "mon", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/monC.json b/reportingInterval/monC.json new file mode 100644 index 00000000..d0c0ccb0 --- /dev/null +++ b/reportingInterval/monC.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "monC", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/monPt.json b/reportingInterval/monPt.json new file mode 100644 index 00000000..4060686a --- /dev/null +++ b/reportingInterval/monPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "monPt", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/subhrPt.json b/reportingInterval/subhrPt.json new file mode 100644 index 00000000..d0b18e6a --- /dev/null +++ b/reportingInterval/subhrPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "subhrPt", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/yr.json b/reportingInterval/yr.json new file mode 100644 index 00000000..53341247 --- /dev/null +++ b/reportingInterval/yr.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "yr", + "type": "frequency" +} \ No newline at end of file diff --git a/reportingInterval/yrPt.json b/reportingInterval/yrPt.json new file mode 100644 index 00000000..c3ffa20c --- /dev/null +++ b/reportingInterval/yrPt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "yrPt", + "type": "frequency" +} \ No newline at end of file diff --git a/source/000_context.jsonld b/source/000_context.jsonld new file mode 100644 index 00000000..2f518aa5 --- /dev/null +++ b/source/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/source/", + "source": "https://espri-mod.github.io/mip-cmor-tables/source" + } +} \ No newline at end of file diff --git a/temporalLabel/000_context.jsonld b/temporalLabel/000_context.jsonld new file mode 100644 index 00000000..bd6f12df --- /dev/null +++ b/temporalLabel/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/temporal_label/", + "temporal_label": "https://espri-mod.github.io/mip-cmor-tables/temporal_label" + } +} diff --git a/temporalLabel/tavg.json b/temporalLabel/tavg.json new file mode 100644 index 00000000..2d774a31 --- /dev/null +++ b/temporalLabel/tavg.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tavg", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tclm.json b/temporalLabel/tclm.json new file mode 100644 index 00000000..ed06eef2 --- /dev/null +++ b/temporalLabel/tclm.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tclm", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tclmdc.json b/temporalLabel/tclmdc.json new file mode 100644 index 00000000..d32b77cf --- /dev/null +++ b/temporalLabel/tclmdc.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tclmdc", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/ti.json b/temporalLabel/ti.json new file mode 100644 index 00000000..47014caa --- /dev/null +++ b/temporalLabel/ti.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ti", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tmax.json b/temporalLabel/tmax.json new file mode 100644 index 00000000..e393a560 --- /dev/null +++ b/temporalLabel/tmax.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tmax", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tmin.json b/temporalLabel/tmin.json new file mode 100644 index 00000000..60e56951 --- /dev/null +++ b/temporalLabel/tmin.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tmin", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tpt.json b/temporalLabel/tpt.json new file mode 100644 index 00000000..121f5fab --- /dev/null +++ b/temporalLabel/tpt.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tpt", + "type": "temporal_label" +} \ No newline at end of file diff --git a/temporalLabel/tsum.json b/temporalLabel/tsum.json new file mode 100644 index 00000000..7f87bdfc --- /dev/null +++ b/temporalLabel/tsum.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "tsum", + "type": "temporal_label" +} \ No newline at end of file diff --git a/timeRange/000_context.jsonld b/timeRange/000_context.jsonld new file mode 100644 index 00000000..35948f6c --- /dev/null +++ b/timeRange/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/time_range/", + "time_range": "https://espri-mod.github.io/mip-cmor-tables/time_range/" + } +} diff --git a/timeRange/daily.json b/timeRange/daily.json new file mode 100644 index 00000000..59467a5f --- /dev/null +++ b/timeRange/daily.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "daily", + "type": "time_range" +} \ No newline at end of file diff --git a/timeRange/hourly.json b/timeRange/hourly.json new file mode 100644 index 00000000..8e923190 --- /dev/null +++ b/timeRange/hourly.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "hourly", + "type": "time_range" +} \ No newline at end of file diff --git a/timeRange/monthly.json b/timeRange/monthly.json new file mode 100644 index 00000000..9b8285f3 --- /dev/null +++ b/timeRange/monthly.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "monthly", + "type": "time_range" +} \ No newline at end of file diff --git a/uniqueField/000_context.jsonld b/uniqueField/000_context.jsonld new file mode 100644 index 00000000..828765e5 --- /dev/null +++ b/uniqueField/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/tracking_id/", + "tracking_id": "https://espri-mod.github.io/mip-cmor-tables/tracking_id" + } +} diff --git a/uniqueField/cmip7.json b/uniqueField/cmip7.json new file mode 100644 index 00000000..d1edc58f --- /dev/null +++ b/uniqueField/cmip7.json @@ -0,0 +1,7 @@ +{ + "@context": "000_context.jsonld", + "id": "prefuuid", + "type": "tracking_id", + "regex": "^hdl:21\\.14107/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" + +} diff --git a/uv.lock b/uv.lock new file mode 100644 index 00000000..47a0eccb --- /dev/null +++ b/uv.lock @@ -0,0 +1,1028 @@ +version = 1 +revision = 2 +requires-python = ">=3.12" + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload_time = "2024-05-20T21:33:25.928Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload_time = "2024-05-20T21:33:24.1Z" }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170, upload_time = "2024-02-06T09:43:11.258Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload_time = "2024-02-06T09:43:09.663Z" }, +] + +[[package]] +name = "asttokens" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/1d/f03bcb60c4a3212e15f99a56085d93093a497718adf828d050b9d675da81/asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0", size = 62284, upload_time = "2023-10-26T10:03:05.06Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/86/4736ac618d82a20d87d2f92ae19441ebc7ac9e7a581d7e58bbe79233b24a/asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24", size = 27764, upload_time = "2023-10-26T10:03:01.789Z" }, +] + +[[package]] +name = "cachetools" +version = "6.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/61/e4fad8155db4a04bfb4734c7c8ff0882f078f24294d42798b3568eb63bff/cachetools-6.2.0.tar.gz", hash = "sha256:38b328c0889450f05f5e120f56ab68c8abaf424e1275522b138ffc93253f7e32", size = 30988, upload_time = "2025-08-25T18:57:30.924Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/56/3124f61d37a7a4e7cc96afc5492c78ba0cb551151e530b54669ddd1436ef/cachetools-6.2.0-py3-none-any.whl", hash = "sha256:1c76a8960c0041fcc21097e357f882197c79da0dbff766e7317890a65d7d8ba6", size = 11276, upload_time = "2025-08-25T18:57:29.684Z" }, +] + +[[package]] +name = "certifi" +version = "2025.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload_time = "2025-08-03T03:07:47.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload_time = "2025-08-03T03:07:45.777Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload_time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload_time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload_time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload_time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload_time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload_time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload_time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload_time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload_time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload_time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload_time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload_time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload_time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload_time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload_time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload_time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload_time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload_time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload_time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload_time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload_time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload_time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload_time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload_time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload_time = "2025-09-08T23:23:16.761Z" }, + { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload_time = "2025-09-08T23:23:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload_time = "2025-09-08T23:23:19.622Z" }, + { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload_time = "2025-09-08T23:23:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload_time = "2025-09-08T23:23:22.08Z" }, + { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload_time = "2025-09-08T23:23:23.314Z" }, + { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload_time = "2025-09-08T23:23:24.541Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload_time = "2025-09-08T23:23:26.143Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload_time = "2025-09-08T23:23:27.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload_time = "2025-09-08T23:23:44.61Z" }, + { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload_time = "2025-09-08T23:23:45.848Z" }, + { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload_time = "2025-09-08T23:23:47.105Z" }, + { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload_time = "2025-09-08T23:23:29.347Z" }, + { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload_time = "2025-09-08T23:23:30.63Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload_time = "2025-09-08T23:23:31.91Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload_time = "2025-09-08T23:23:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload_time = "2025-09-08T23:23:34.495Z" }, + { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload_time = "2025-09-08T23:23:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload_time = "2025-09-08T23:23:37.328Z" }, + { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload_time = "2025-09-08T23:23:38.945Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload_time = "2025-09-08T23:23:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload_time = "2025-09-08T23:23:41.742Z" }, + { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload_time = "2025-09-08T23:23:43.004Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload_time = "2025-08-09T07:57:28.46Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/5e/14c94999e418d9b87682734589404a25854d5f5d0408df68bc15b6ff54bb/charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1", size = 205655, upload_time = "2025-08-09T07:56:08.475Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a8/c6ec5d389672521f644505a257f50544c074cf5fc292d5390331cd6fc9c3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0cacf8f7297b0c4fcb74227692ca46b4a5852f8f4f24b3c766dd94a1075c4884", size = 146223, upload_time = "2025-08-09T07:56:09.708Z" }, + { url = "https://files.pythonhosted.org/packages/fc/eb/a2ffb08547f4e1e5415fb69eb7db25932c52a52bed371429648db4d84fb1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c6fd51128a41297f5409deab284fecbe5305ebd7e5a1f959bee1c054622b7018", size = 159366, upload_time = "2025-08-09T07:56:11.326Z" }, + { url = "https://files.pythonhosted.org/packages/82/10/0fd19f20c624b278dddaf83b8464dcddc2456cb4b02bb902a6da126b87a1/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cfb2aad70f2c6debfbcb717f23b7eb55febc0bb23dcffc0f076009da10c6392", size = 157104, upload_time = "2025-08-09T07:56:13.014Z" }, + { url = "https://files.pythonhosted.org/packages/16/ab/0233c3231af734f5dfcf0844aa9582d5a1466c985bbed6cedab85af9bfe3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f", size = 151830, upload_time = "2025-08-09T07:56:14.428Z" }, + { url = "https://files.pythonhosted.org/packages/ae/02/e29e22b4e02839a0e4a06557b1999d0a47db3567e82989b5bb21f3fbbd9f/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:027b776c26d38b7f15b26a5da1044f376455fb3766df8fc38563b4efbc515154", size = 148854, upload_time = "2025-08-09T07:56:16.051Z" }, + { url = "https://files.pythonhosted.org/packages/05/6b/e2539a0a4be302b481e8cafb5af8792da8093b486885a1ae4d15d452bcec/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:42e5088973e56e31e4fa58eb6bd709e42fc03799c11c42929592889a2e54c491", size = 160670, upload_time = "2025-08-09T07:56:17.314Z" }, + { url = "https://files.pythonhosted.org/packages/31/e7/883ee5676a2ef217a40ce0bffcc3d0dfbf9e64cbcfbdf822c52981c3304b/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cc34f233c9e71701040d772aa7490318673aa7164a0efe3172b2981218c26d93", size = 158501, upload_time = "2025-08-09T07:56:18.641Z" }, + { url = "https://files.pythonhosted.org/packages/c1/35/6525b21aa0db614cf8b5792d232021dca3df7f90a1944db934efa5d20bb1/charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320e8e66157cc4e247d9ddca8e21f427efc7a04bbd0ac8a9faf56583fa543f9f", size = 153173, upload_time = "2025-08-09T07:56:20.289Z" }, + { url = "https://files.pythonhosted.org/packages/50/ee/f4704bad8201de513fdc8aac1cabc87e38c5818c93857140e06e772b5892/charset_normalizer-3.4.3-cp312-cp312-win32.whl", hash = "sha256:fb6fecfd65564f208cbf0fba07f107fb661bcd1a7c389edbced3f7a493f70e37", size = 99822, upload_time = "2025-08-09T07:56:21.551Z" }, + { url = "https://files.pythonhosted.org/packages/39/f5/3b3836ca6064d0992c58c7561c6b6eee1b3892e9665d650c803bd5614522/charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc", size = 107543, upload_time = "2025-08-09T07:56:23.115Z" }, + { url = "https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe", size = 205326, upload_time = "2025-08-09T07:56:24.721Z" }, + { url = "https://files.pythonhosted.org/packages/71/11/98a04c3c97dd34e49c7d247083af03645ca3730809a5509443f3c37f7c99/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8", size = 146008, upload_time = "2025-08-09T07:56:26.004Z" }, + { url = "https://files.pythonhosted.org/packages/60/f5/4659a4cb3c4ec146bec80c32d8bb16033752574c20b1252ee842a95d1a1e/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9", size = 159196, upload_time = "2025-08-09T07:56:27.25Z" }, + { url = "https://files.pythonhosted.org/packages/86/9e/f552f7a00611f168b9a5865a1414179b2c6de8235a4fa40189f6f79a1753/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31", size = 156819, upload_time = "2025-08-09T07:56:28.515Z" }, + { url = "https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f", size = 151350, upload_time = "2025-08-09T07:56:29.716Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a9/3865b02c56f300a6f94fc631ef54f0a8a29da74fb45a773dfd3dcd380af7/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927", size = 148644, upload_time = "2025-08-09T07:56:30.984Z" }, + { url = "https://files.pythonhosted.org/packages/77/d9/cbcf1a2a5c7d7856f11e7ac2d782aec12bdfea60d104e60e0aa1c97849dc/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9", size = 160468, upload_time = "2025-08-09T07:56:32.252Z" }, + { url = "https://files.pythonhosted.org/packages/f6/42/6f45efee8697b89fda4d50580f292b8f7f9306cb2971d4b53f8914e4d890/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5", size = 158187, upload_time = "2025-08-09T07:56:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/70/99/f1c3bdcfaa9c45b3ce96f70b14f070411366fa19549c1d4832c935d8e2c3/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc", size = 152699, upload_time = "2025-08-09T07:56:34.739Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ad/b0081f2f99a4b194bcbb1934ef3b12aa4d9702ced80a37026b7607c72e58/charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce", size = 99580, upload_time = "2025-08-09T07:56:35.981Z" }, + { url = "https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef", size = 107366, upload_time = "2025-08-09T07:56:37.339Z" }, + { url = "https://files.pythonhosted.org/packages/8e/91/b5a06ad970ddc7a0e513112d40113e834638f4ca1120eb727a249fb2715e/charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15", size = 204342, upload_time = "2025-08-09T07:56:38.687Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ec/1edc30a377f0a02689342f214455c3f6c2fbedd896a1d2f856c002fc3062/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db", size = 145995, upload_time = "2025-08-09T07:56:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/17/e5/5e67ab85e6d22b04641acb5399c8684f4d37caf7558a53859f0283a650e9/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d", size = 158640, upload_time = "2025-08-09T07:56:41.311Z" }, + { url = "https://files.pythonhosted.org/packages/f1/e5/38421987f6c697ee3722981289d554957c4be652f963d71c5e46a262e135/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096", size = 156636, upload_time = "2025-08-09T07:56:43.195Z" }, + { url = "https://files.pythonhosted.org/packages/a0/e4/5a075de8daa3ec0745a9a3b54467e0c2967daaaf2cec04c845f73493e9a1/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa", size = 150939, upload_time = "2025-08-09T07:56:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/02/f7/3611b32318b30974131db62b4043f335861d4d9b49adc6d57c1149cc49d4/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049", size = 148580, upload_time = "2025-08-09T07:56:46.684Z" }, + { url = "https://files.pythonhosted.org/packages/7e/61/19b36f4bd67f2793ab6a99b979b4e4f3d8fc754cbdffb805335df4337126/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0", size = 159870, upload_time = "2025-08-09T07:56:47.941Z" }, + { url = "https://files.pythonhosted.org/packages/06/57/84722eefdd338c04cf3030ada66889298eaedf3e7a30a624201e0cbe424a/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92", size = 157797, upload_time = "2025-08-09T07:56:49.756Z" }, + { url = "https://files.pythonhosted.org/packages/72/2a/aff5dd112b2f14bcc3462c312dce5445806bfc8ab3a7328555da95330e4b/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16", size = 152224, upload_time = "2025-08-09T07:56:51.369Z" }, + { url = "https://files.pythonhosted.org/packages/b7/8c/9839225320046ed279c6e839d51f028342eb77c91c89b8ef2549f951f3ec/charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce", size = 100086, upload_time = "2025-08-09T07:56:52.722Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7a/36fbcf646e41f710ce0a563c1c9a343c6edf9be80786edeb15b6f62e17db/charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c", size = 107400, upload_time = "2025-08-09T07:56:55.172Z" }, + { url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload_time = "2025-08-09T07:57:26.864Z" }, +] + +[[package]] +name = "click" +version = "8.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/60/6c/8ca2efa64cf75a977a0d7fac081354553ebe483345c734fb6b6515d96bbc/click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202", size = 286342, upload_time = "2025-05-20T23:19:49.832Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b", size = 102215, upload_time = "2025-05-20T23:19:47.796Z" }, +] + +[[package]] +name = "cmip7-cvs" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "devtools" }, + { name = "esgvoc" }, + { name = "icecream" }, + { name = "jupyter-console" }, + { name = "requests" }, +] + +[package.metadata] +requires-dist = [ + { name = "devtools", specifier = ">=0.12.2" }, + { name = "esgvoc", git = "https://github.com/ESGF/esgf-vocab.git?branch=integration" }, + { name = "icecream", specifier = ">=2.1.7" }, + { name = "jupyter-console", specifier = ">=6.6.3" }, + { name = "requests", specifier = ">=2.32.5" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload_time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload_time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "comm" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload_time = "2025-07-25T14:02:04.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload_time = "2025-07-25T14:02:02.896Z" }, +] + +[[package]] +name = "debugpy" +version = "1.8.16" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/d4/722d0bcc7986172ac2ef3c979ad56a1030e3afd44ced136d45f8142b1f4a/debugpy-1.8.16.tar.gz", hash = "sha256:31e69a1feb1cf6b51efbed3f6c9b0ef03bc46ff050679c4be7ea6d2e23540870", size = 1643809, upload_time = "2025-08-06T18:00:02.647Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/fb/0387c0e108d842c902801bc65ccc53e5b91d8c169702a9bbf4f7efcedf0c/debugpy-1.8.16-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:b202e2843e32e80b3b584bcebfe0e65e0392920dc70df11b2bfe1afcb7a085e4", size = 2511822, upload_time = "2025-08-06T18:00:18.526Z" }, + { url = "https://files.pythonhosted.org/packages/37/44/19e02745cae22bf96440141f94e15a69a1afaa3a64ddfc38004668fcdebf/debugpy-1.8.16-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64473c4a306ba11a99fe0bb14622ba4fbd943eb004847d9b69b107bde45aa9ea", size = 4230135, upload_time = "2025-08-06T18:00:19.997Z" }, + { url = "https://files.pythonhosted.org/packages/f3/0b/19b1ba5ee4412f303475a2c7ad5858efb99c90eae5ec627aa6275c439957/debugpy-1.8.16-cp312-cp312-win32.whl", hash = "sha256:833a61ed446426e38b0dd8be3e9d45ae285d424f5bf6cd5b2b559c8f12305508", size = 5281271, upload_time = "2025-08-06T18:00:21.281Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e0/bc62e2dc141de53bd03e2c7cb9d7011de2e65e8bdcdaa26703e4d28656ba/debugpy-1.8.16-cp312-cp312-win_amd64.whl", hash = "sha256:75f204684581e9ef3dc2f67687c3c8c183fde2d6675ab131d94084baf8084121", size = 5323149, upload_time = "2025-08-06T18:00:23.033Z" }, + { url = "https://files.pythonhosted.org/packages/62/66/607ab45cc79e60624df386e233ab64a6d8d39ea02e7f80e19c1d451345bb/debugpy-1.8.16-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:85df3adb1de5258dca910ae0bb185e48c98801ec15018a263a92bb06be1c8787", size = 2496157, upload_time = "2025-08-06T18:00:24.361Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a0/c95baae08a75bceabb79868d663a0736655e427ab9c81fb848da29edaeac/debugpy-1.8.16-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bee89e948bc236a5c43c4214ac62d28b29388453f5fd328d739035e205365f0b", size = 4222491, upload_time = "2025-08-06T18:00:25.806Z" }, + { url = "https://files.pythonhosted.org/packages/5b/2f/1c8db6ddd8a257c3cd2c46413b267f1d5fa3df910401c899513ce30392d6/debugpy-1.8.16-cp313-cp313-win32.whl", hash = "sha256:cf358066650439847ec5ff3dae1da98b5461ea5da0173d93d5e10f477c94609a", size = 5281126, upload_time = "2025-08-06T18:00:27.207Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ba/c3e154ab307366d6c5a9c1b68de04914e2ce7fa2f50d578311d8cc5074b2/debugpy-1.8.16-cp313-cp313-win_amd64.whl", hash = "sha256:b5aea1083f6f50023e8509399d7dc6535a351cc9f2e8827d1e093175e4d9fa4c", size = 5323094, upload_time = "2025-08-06T18:00:29.03Z" }, + { url = "https://files.pythonhosted.org/packages/52/57/ecc9ae29fa5b2d90107cd1d9bf8ed19aacb74b2264d986ae9d44fe9bdf87/debugpy-1.8.16-py2.py3-none-any.whl", hash = "sha256:19c9521962475b87da6f673514f7fd610328757ec993bf7ec0d8c96f9a325f9e", size = 5287700, upload_time = "2025-08-06T18:00:42.333Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload_time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload_time = "2025-02-24T04:41:32.565Z" }, +] + +[[package]] +name = "devtools" +version = "0.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/75/b78198620640d394bc435c17bb49db18419afdd6cfa3ed8bcfe14034ec80/devtools-0.12.2.tar.gz", hash = "sha256:efceab184cb35e3a11fa8e602cc4fadacaa2e859e920fc6f87bf130b69885507", size = 75005, upload_time = "2023-09-03T16:57:00.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/ae/afb1487556e2dc827a17097aac8158a25b433a345386f0e249f6d2694ccb/devtools-0.12.2-py3-none-any.whl", hash = "sha256:c366e3de1df4cdd635f1ad8cbcd3af01a384d7abda71900e68d43b04eb6aaca7", size = 19411, upload_time = "2023-09-03T16:56:59.049Z" }, +] + +[[package]] +name = "esgvoc" +version = "1.0.1" +source = { git = "https://github.com/ESGF/esgf-vocab.git?branch=integration#4447c35248ce758d839c9fc7a1646bb400a1277a" } +dependencies = [ + { name = "idna" }, + { name = "platformdirs" }, + { name = "pydantic" }, + { name = "pyld" }, + { name = "pytest" }, + { name = "requests" }, + { name = "sqlalchemy" }, + { name = "sqlmodel" }, + { name = "toml" }, + { name = "typer" }, +] + +[[package]] +name = "executing" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload_time = "2025-09-01T09:48:10.866Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload_time = "2025-09-01T09:48:08.5Z" }, +] + +[[package]] +name = "frozendict" +version = "2.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/59/19eb300ba28e7547538bdf603f1c6c34793240a90e1a7b61b65d8517e35e/frozendict-2.4.6.tar.gz", hash = "sha256:df7cd16470fbd26fc4969a208efadc46319334eb97def1ddf48919b351192b8e", size = 316416, upload_time = "2024-10-13T12:15:32.449Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/13/d9839089b900fa7b479cce495d62110cddc4bd5630a04d8469916c0e79c5/frozendict-2.4.6-py311-none-any.whl", hash = "sha256:d065db6a44db2e2375c23eac816f1a022feb2fa98cbb50df44a9e83700accbea", size = 16148, upload_time = "2024-10-13T12:15:26.839Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d0/d482c39cee2ab2978a892558cf130681d4574ea208e162da8958b31e9250/frozendict-2.4.6-py312-none-any.whl", hash = "sha256:49344abe90fb75f0f9fdefe6d4ef6d4894e640fadab71f11009d52ad97f370b9", size = 16146, upload_time = "2024-10-13T12:15:28.16Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8e/b6bf6a0de482d7d7d7a2aaac8fdc4a4d0bb24a809f5ddd422aa7060eb3d2/frozendict-2.4.6-py313-none-any.whl", hash = "sha256:7134a2bb95d4a16556bb5f2b9736dceb6ea848fa5b6f3f6c2d6dba93b44b4757", size = 16146, upload_time = "2024-10-13T12:15:29.495Z" }, +] + +[[package]] +name = "greenlet" +version = "3.2.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/b8/704d753a5a45507a7aab61f18db9509302ed3d0a27ac7e0359ec2905b1a6/greenlet-3.2.4.tar.gz", hash = "sha256:0dca0d95ff849f9a364385f36ab49f50065d76964944638be9691e1832e9f86d", size = 188260, upload_time = "2025-08-07T13:24:33.51Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/69/9b804adb5fd0671f367781560eb5eb586c4d495277c93bde4307b9e28068/greenlet-3.2.4-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3b67ca49f54cede0186854a008109d6ee71f66bd57bb36abd6d0a0267b540cdd", size = 274079, upload_time = "2025-08-07T13:15:45.033Z" }, + { url = "https://files.pythonhosted.org/packages/46/e9/d2a80c99f19a153eff70bc451ab78615583b8dac0754cfb942223d2c1a0d/greenlet-3.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ddf9164e7a5b08e9d22511526865780a576f19ddd00d62f8a665949327fde8bb", size = 640997, upload_time = "2025-08-07T13:42:56.234Z" }, + { url = "https://files.pythonhosted.org/packages/3b/16/035dcfcc48715ccd345f3a93183267167cdd162ad123cd93067d86f27ce4/greenlet-3.2.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f28588772bb5fb869a8eb331374ec06f24a83a9c25bfa1f38b6993afe9c1e968", size = 655185, upload_time = "2025-08-07T13:45:27.624Z" }, + { url = "https://files.pythonhosted.org/packages/31/da/0386695eef69ffae1ad726881571dfe28b41970173947e7c558d9998de0f/greenlet-3.2.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:5c9320971821a7cb77cfab8d956fa8e39cd07ca44b6070db358ceb7f8797c8c9", size = 649926, upload_time = "2025-08-07T13:53:15.251Z" }, + { url = "https://files.pythonhosted.org/packages/68/88/69bf19fd4dc19981928ceacbc5fd4bb6bc2215d53199e367832e98d1d8fe/greenlet-3.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c60a6d84229b271d44b70fb6e5fa23781abb5d742af7b808ae3f6efd7c9c60f6", size = 651839, upload_time = "2025-08-07T13:18:30.281Z" }, + { url = "https://files.pythonhosted.org/packages/19/0d/6660d55f7373b2ff8152401a83e02084956da23ae58cddbfb0b330978fe9/greenlet-3.2.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3b3812d8d0c9579967815af437d96623f45c0f2ae5f04e366de62a12d83a8fb0", size = 607586, upload_time = "2025-08-07T13:18:28.544Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1a/c953fdedd22d81ee4629afbb38d2f9d71e37d23caace44775a3a969147d4/greenlet-3.2.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:abbf57b5a870d30c4675928c37278493044d7c14378350b3aa5d484fa65575f0", size = 1123281, upload_time = "2025-08-07T13:42:39.858Z" }, + { url = "https://files.pythonhosted.org/packages/3f/c7/12381b18e21aef2c6bd3a636da1088b888b97b7a0362fac2e4de92405f97/greenlet-3.2.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:20fb936b4652b6e307b8f347665e2c615540d4b42b3b4c8a321d8286da7e520f", size = 1151142, upload_time = "2025-08-07T13:18:22.981Z" }, + { url = "https://files.pythonhosted.org/packages/e9/08/b0814846b79399e585f974bbeebf5580fbe59e258ea7be64d9dfb253c84f/greenlet-3.2.4-cp312-cp312-win_amd64.whl", hash = "sha256:a7d4e128405eea3814a12cc2605e0e6aedb4035bf32697f72deca74de4105e02", size = 299899, upload_time = "2025-08-07T13:38:53.448Z" }, + { url = "https://files.pythonhosted.org/packages/49/e8/58c7f85958bda41dafea50497cbd59738c5c43dbbea5ee83d651234398f4/greenlet-3.2.4-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:1a921e542453fe531144e91e1feedf12e07351b1cf6c9e8a3325ea600a715a31", size = 272814, upload_time = "2025-08-07T13:15:50.011Z" }, + { url = "https://files.pythonhosted.org/packages/62/dd/b9f59862e9e257a16e4e610480cfffd29e3fae018a68c2332090b53aac3d/greenlet-3.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd3c8e693bff0fff6ba55f140bf390fa92c994083f838fece0f63be121334945", size = 641073, upload_time = "2025-08-07T13:42:57.23Z" }, + { url = "https://files.pythonhosted.org/packages/f7/0b/bc13f787394920b23073ca3b6c4a7a21396301ed75a655bcb47196b50e6e/greenlet-3.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:710638eb93b1fa52823aa91bf75326f9ecdfd5e0466f00789246a5280f4ba0fc", size = 655191, upload_time = "2025-08-07T13:45:29.752Z" }, + { url = "https://files.pythonhosted.org/packages/f2/d6/6adde57d1345a8d0f14d31e4ab9c23cfe8e2cd39c3baf7674b4b0338d266/greenlet-3.2.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:c5111ccdc9c88f423426df3fd1811bfc40ed66264d35aa373420a34377efc98a", size = 649516, upload_time = "2025-08-07T13:53:16.314Z" }, + { url = "https://files.pythonhosted.org/packages/7f/3b/3a3328a788d4a473889a2d403199932be55b1b0060f4ddd96ee7cdfcad10/greenlet-3.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d76383238584e9711e20ebe14db6c88ddcedc1829a9ad31a584389463b5aa504", size = 652169, upload_time = "2025-08-07T13:18:32.861Z" }, + { url = "https://files.pythonhosted.org/packages/ee/43/3cecdc0349359e1a527cbf2e3e28e5f8f06d3343aaf82ca13437a9aa290f/greenlet-3.2.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:23768528f2911bcd7e475210822ffb5254ed10d71f4028387e5a99b4c6699671", size = 610497, upload_time = "2025-08-07T13:18:31.636Z" }, + { url = "https://files.pythonhosted.org/packages/b8/19/06b6cf5d604e2c382a6f31cafafd6f33d5dea706f4db7bdab184bad2b21d/greenlet-3.2.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:00fadb3fedccc447f517ee0d3fd8fe49eae949e1cd0f6a611818f4f6fb7dc83b", size = 1121662, upload_time = "2025-08-07T13:42:41.117Z" }, + { url = "https://files.pythonhosted.org/packages/a2/15/0d5e4e1a66fab130d98168fe984c509249c833c1a3c16806b90f253ce7b9/greenlet-3.2.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:d25c5091190f2dc0eaa3f950252122edbbadbb682aa7b1ef2f8af0f8c0afefae", size = 1149210, upload_time = "2025-08-07T13:18:24.072Z" }, + { url = "https://files.pythonhosted.org/packages/0b/55/2321e43595e6801e105fcfdee02b34c0f996eb71e6ddffca6b10b7e1d771/greenlet-3.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:554b03b6e73aaabec3745364d6239e9e012d64c68ccd0b8430c64ccc14939a8b", size = 299685, upload_time = "2025-08-07T13:24:38.824Z" }, + { url = "https://files.pythonhosted.org/packages/22/5c/85273fd7cc388285632b0498dbbab97596e04b154933dfe0f3e68156c68c/greenlet-3.2.4-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:49a30d5fda2507ae77be16479bdb62a660fa51b1eb4928b524975b3bde77b3c0", size = 273586, upload_time = "2025-08-07T13:16:08.004Z" }, + { url = "https://files.pythonhosted.org/packages/d1/75/10aeeaa3da9332c2e761e4c50d4c3556c21113ee3f0afa2cf5769946f7a3/greenlet-3.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:299fd615cd8fc86267b47597123e3f43ad79c9d8a22bebdce535e53550763e2f", size = 686346, upload_time = "2025-08-07T13:42:59.944Z" }, + { url = "https://files.pythonhosted.org/packages/c0/aa/687d6b12ffb505a4447567d1f3abea23bd20e73a5bed63871178e0831b7a/greenlet-3.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:c17b6b34111ea72fc5a4e4beec9711d2226285f0386ea83477cbb97c30a3f3a5", size = 699218, upload_time = "2025-08-07T13:45:30.969Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8b/29aae55436521f1d6f8ff4e12fb676f3400de7fcf27fccd1d4d17fd8fecd/greenlet-3.2.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b4a1870c51720687af7fa3e7cda6d08d801dae660f75a76f3845b642b4da6ee1", size = 694659, upload_time = "2025-08-07T13:53:17.759Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/ea25914b1ebfde93b6fc4ff46d6864564fba59024e928bdc7de475affc25/greenlet-3.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:061dc4cf2c34852b052a8620d40f36324554bc192be474b9e9770e8c042fd735", size = 695355, upload_time = "2025-08-07T13:18:34.517Z" }, + { url = "https://files.pythonhosted.org/packages/72/60/fc56c62046ec17f6b0d3060564562c64c862948c9d4bc8aa807cf5bd74f4/greenlet-3.2.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:44358b9bf66c8576a9f57a590d5f5d6e72fa4228b763d0e43fee6d3b06d3a337", size = 657512, upload_time = "2025-08-07T13:18:33.969Z" }, + { url = "https://files.pythonhosted.org/packages/e3/a5/6ddab2b4c112be95601c13428db1d8b6608a8b6039816f2ba09c346c08fc/greenlet-3.2.4-cp314-cp314-win_amd64.whl", hash = "sha256:e37ab26028f12dbb0ff65f29a8d3d44a765c61e729647bf2ddfbbed621726f01", size = 303425, upload_time = "2025-08-07T13:32:27.59Z" }, +] + +[[package]] +name = "icecream" +version = "2.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "colorama" }, + { name = "executing" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/d0/738341f0a3636a8e4bc798b98b9e0594d0de894e85208af43a6a05b9db44/icecream-2.1.7.tar.gz", hash = "sha256:936df053e65ff3c7a219fa79311b32bdae19aad83dd2e23d153ab8864b78acd9", size = 17355, upload_time = "2025-08-17T16:02:12.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/ae/7abd8d0db31ffafdc5088db7297d6fa14de53cb7daf6da21b4794a7567ce/icecream-2.1.7-py3-none-any.whl", hash = "sha256:b52cdd40cb5080279c4534fcd77aa510b1e7397a687e9d4daf2f8d2028bd738c", size = 14942, upload_time = "2025-08-17T16:02:11.468Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload_time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload_time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload_time = "2025-03-19T20:09:59.721Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload_time = "2025-03-19T20:10:01.071Z" }, +] + +[[package]] +name = "ipykernel" +version = "6.30.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bb/76/11082e338e0daadc89c8ff866185de11daf67d181901038f9e139d109761/ipykernel-6.30.1.tar.gz", hash = "sha256:6abb270161896402e76b91394fcdce5d1be5d45f456671e5080572f8505be39b", size = 166260, upload_time = "2025-08-04T15:47:35.018Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl", hash = "sha256:aa6b9fb93dca949069d8b85b6c79b2518e32ac583ae9c7d37c51d119e18b3fb4", size = 117484, upload_time = "2025-08-04T15:47:32.622Z" }, +] + +[[package]] +name = "ipython" +version = "9.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator" }, + { name = "ipython-pygments-lexers" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6e/71/a86262bf5a68bf211bcc71fe302af7e05f18a2852fdc610a854d20d085e6/ipython-9.5.0.tar.gz", hash = "sha256:129c44b941fe6d9b82d36fc7a7c18127ddb1d6f02f78f867f402e2e3adde3113", size = 4389137, upload_time = "2025-08-29T12:15:21.519Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/2a/5628a99d04acb2d2f2e749cdf4ea571d2575e898df0528a090948018b726/ipython-9.5.0-py3-none-any.whl", hash = "sha256:88369ffa1d5817d609120daa523a6da06d02518e582347c29f8451732a9c5e72", size = 612426, upload_time = "2025-08-29T12:15:18.866Z" }, +] + +[[package]] +name = "ipython-pygments-lexers" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/4c/5dd1d8af08107f88c7f741ead7a40854b8ac24ddf9ae850afbcf698aa552/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81", size = 8393, upload_time = "2025-01-17T11:24:34.505Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c", size = 8074, upload_time = "2025-01-17T11:24:33.271Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload_time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload_time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/71/22/bf9f12fdaeae18019a468b68952a60fe6dbab5d67cd2a103cac7659b41ca/jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419", size = 342019, upload_time = "2024-09-17T10:44:17.613Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f", size = 106105, upload_time = "2024-09-17T10:44:15.218Z" }, +] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipykernel" }, + { name = "ipython" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "pyzmq" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/2d/e2fd31e2fc41c14e2bcb6c976ab732597e907523f6b2420305f9fc7fdbdb/jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539", size = 34363, upload_time = "2023-03-06T14:13:31.02Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/77/71d78d58f15c22db16328a476426f7ac4a60d3a5a7ba3b9627ee2f7903d4/jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485", size = 24510, upload_time = "2023-03-06T14:13:28.229Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1b/72906d554acfeb588332eaaa6f61577705e9ec752ddb486f302dafa292d9/jupyter_core-5.8.1.tar.gz", hash = "sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941", size = 88923, upload_time = "2025-05-27T07:38:16.655Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/57/6bffd4b20b88da3800c5d691e0337761576ee688eb01299eae865689d2df/jupyter_core-5.8.1-py3-none-any.whl", hash = "sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0", size = 28880, upload_time = "2025-05-27T07:38:15.137Z" }, +] + +[[package]] +name = "lxml" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8f/bd/f9d01fd4132d81c6f43ab01983caea69ec9614b913c290a26738431a015d/lxml-6.0.1.tar.gz", hash = "sha256:2b3a882ebf27dd026df3801a87cf49ff791336e0f94b0fad195db77e01240690", size = 4070214, upload_time = "2025-08-22T10:37:53.525Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/a9/82b244c8198fcdf709532e39a1751943a36b3e800b420adc739d751e0299/lxml-6.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c03ac546adaabbe0b8e4a15d9ad815a281afc8d36249c246aecf1aaad7d6f200", size = 8422788, upload_time = "2025-08-22T10:32:56.612Z" }, + { url = "https://files.pythonhosted.org/packages/c9/8d/1ed2bc20281b0e7ed3e6c12b0a16e64ae2065d99be075be119ba88486e6d/lxml-6.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:33b862c7e3bbeb4ba2c96f3a039f925c640eeba9087a4dc7a572ec0f19d89392", size = 4593547, upload_time = "2025-08-22T10:32:59.016Z" }, + { url = "https://files.pythonhosted.org/packages/76/53/d7fd3af95b72a3493bf7fbe842a01e339d8f41567805cecfecd5c71aa5ee/lxml-6.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7a3ec1373f7d3f519de595032d4dcafae396c29407cfd5073f42d267ba32440d", size = 4948101, upload_time = "2025-08-22T10:33:00.765Z" }, + { url = "https://files.pythonhosted.org/packages/9d/51/4e57cba4d55273c400fb63aefa2f0d08d15eac021432571a7eeefee67bed/lxml-6.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:03b12214fb1608f4cffa181ec3d046c72f7e77c345d06222144744c122ded870", size = 5108090, upload_time = "2025-08-22T10:33:03.108Z" }, + { url = "https://files.pythonhosted.org/packages/f6/6e/5f290bc26fcc642bc32942e903e833472271614e24d64ad28aaec09d5dae/lxml-6.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:207ae0d5f0f03b30f95e649a6fa22aa73f5825667fee9c7ec6854d30e19f2ed8", size = 5021791, upload_time = "2025-08-22T10:33:06.972Z" }, + { url = "https://files.pythonhosted.org/packages/13/d4/2e7551a86992ece4f9a0f6eebd4fb7e312d30f1e372760e2109e721d4ce6/lxml-6.0.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:32297b09ed4b17f7b3f448de87a92fb31bb8747496623483788e9f27c98c0f00", size = 5358861, upload_time = "2025-08-22T10:33:08.967Z" }, + { url = "https://files.pythonhosted.org/packages/8a/5f/cb49d727fc388bf5fd37247209bab0da11697ddc5e976ccac4826599939e/lxml-6.0.1-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7e18224ea241b657a157c85e9cac82c2b113ec90876e01e1f127312006233756", size = 5652569, upload_time = "2025-08-22T10:33:10.815Z" }, + { url = "https://files.pythonhosted.org/packages/ca/b8/66c1ef8c87ad0f958b0a23998851e610607c74849e75e83955d5641272e6/lxml-6.0.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a07a994d3c46cd4020c1ea566345cf6815af205b1e948213a4f0f1d392182072", size = 5252262, upload_time = "2025-08-22T10:33:12.673Z" }, + { url = "https://files.pythonhosted.org/packages/1a/ef/131d3d6b9590e64fdbb932fbc576b81fcc686289da19c7cb796257310e82/lxml-6.0.1-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:2287fadaa12418a813b05095485c286c47ea58155930cfbd98c590d25770e225", size = 4710309, upload_time = "2025-08-22T10:33:14.952Z" }, + { url = "https://files.pythonhosted.org/packages/bc/3f/07f48ae422dce44902309aa7ed386c35310929dc592439c403ec16ef9137/lxml-6.0.1-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b4e597efca032ed99f418bd21314745522ab9fa95af33370dcee5533f7f70136", size = 5265786, upload_time = "2025-08-22T10:33:16.721Z" }, + { url = "https://files.pythonhosted.org/packages/11/c7/125315d7b14ab20d9155e8316f7d287a4956098f787c22d47560b74886c4/lxml-6.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9696d491f156226decdd95d9651c6786d43701e49f32bf23715c975539aa2b3b", size = 5062272, upload_time = "2025-08-22T10:33:18.478Z" }, + { url = "https://files.pythonhosted.org/packages/8b/c3/51143c3a5fc5168a7c3ee626418468ff20d30f5a59597e7b156c1e61fba8/lxml-6.0.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e4e3cd3585f3c6f87cdea44cda68e692cc42a012f0131d25957ba4ce755241a7", size = 4786955, upload_time = "2025-08-22T10:33:20.34Z" }, + { url = "https://files.pythonhosted.org/packages/11/86/73102370a420ec4529647b31c4a8ce8c740c77af3a5fae7a7643212d6f6e/lxml-6.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:45cbc92f9d22c28cd3b97f8d07fcefa42e569fbd587dfdac76852b16a4924277", size = 5673557, upload_time = "2025-08-22T10:33:22.282Z" }, + { url = "https://files.pythonhosted.org/packages/d7/2d/aad90afaec51029aef26ef773b8fd74a9e8706e5e2f46a57acd11a421c02/lxml-6.0.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:f8c9bcfd2e12299a442fba94459adf0b0d001dbc68f1594439bfa10ad1ecb74b", size = 5254211, upload_time = "2025-08-22T10:33:24.15Z" }, + { url = "https://files.pythonhosted.org/packages/63/01/c9e42c8c2d8b41f4bdefa42ab05448852e439045f112903dd901b8fbea4d/lxml-6.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1e9dc2b9f1586e7cd77753eae81f8d76220eed9b768f337dc83a3f675f2f0cf9", size = 5275817, upload_time = "2025-08-22T10:33:26.007Z" }, + { url = "https://files.pythonhosted.org/packages/bc/1f/962ea2696759abe331c3b0e838bb17e92224f39c638c2068bf0d8345e913/lxml-6.0.1-cp312-cp312-win32.whl", hash = "sha256:987ad5c3941c64031f59c226167f55a04d1272e76b241bfafc968bdb778e07fb", size = 3610889, upload_time = "2025-08-22T10:33:28.169Z" }, + { url = "https://files.pythonhosted.org/packages/41/e2/22c86a990b51b44442b75c43ecb2f77b8daba8c4ba63696921966eac7022/lxml-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:abb05a45394fd76bf4a60c1b7bec0e6d4e8dfc569fc0e0b1f634cd983a006ddc", size = 4010925, upload_time = "2025-08-22T10:33:29.874Z" }, + { url = "https://files.pythonhosted.org/packages/b2/21/dc0c73325e5eb94ef9c9d60dbb5dcdcb2e7114901ea9509735614a74e75a/lxml-6.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:c4be29bce35020d8579d60aa0a4e95effd66fcfce31c46ffddf7e5422f73a299", size = 3671922, upload_time = "2025-08-22T10:33:31.535Z" }, + { url = "https://files.pythonhosted.org/packages/43/c4/cd757eeec4548e6652eff50b944079d18ce5f8182d2b2cf514e125e8fbcb/lxml-6.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:485eda5d81bb7358db96a83546949c5fe7474bec6c68ef3fa1fb61a584b00eea", size = 8405139, upload_time = "2025-08-22T10:33:34.09Z" }, + { url = "https://files.pythonhosted.org/packages/ff/99/0290bb86a7403893f5e9658490c705fcea103b9191f2039752b071b4ef07/lxml-6.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d12160adea318ce3d118f0b4fbdff7d1225c75fb7749429541b4d217b85c3f76", size = 4585954, upload_time = "2025-08-22T10:33:36.294Z" }, + { url = "https://files.pythonhosted.org/packages/88/a7/4bb54dd1e626342a0f7df6ec6ca44fdd5d0e100ace53acc00e9a689ead04/lxml-6.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:48c8d335d8ab72f9265e7ba598ae5105a8272437403f4032107dbcb96d3f0b29", size = 4944052, upload_time = "2025-08-22T10:33:38.19Z" }, + { url = "https://files.pythonhosted.org/packages/71/8d/20f51cd07a7cbef6214675a8a5c62b2559a36d9303fe511645108887c458/lxml-6.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:405e7cf9dbdbb52722c231e0f1257214202dfa192327fab3de45fd62e0554082", size = 5098885, upload_time = "2025-08-22T10:33:40.035Z" }, + { url = "https://files.pythonhosted.org/packages/5a/63/efceeee7245d45f97d548e48132258a36244d3c13c6e3ddbd04db95ff496/lxml-6.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:299a790d403335a6a057ade46f92612ebab87b223e4e8c5308059f2dc36f45ed", size = 5017542, upload_time = "2025-08-22T10:33:41.896Z" }, + { url = "https://files.pythonhosted.org/packages/57/5d/92cb3d3499f5caba17f7933e6be3b6c7de767b715081863337ced42eb5f2/lxml-6.0.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:48da704672f6f9c461e9a73250440c647638cc6ff9567ead4c3b1f189a604ee8", size = 5347303, upload_time = "2025-08-22T10:33:43.868Z" }, + { url = "https://files.pythonhosted.org/packages/69/f8/606fa16a05d7ef5e916c6481c634f40870db605caffed9d08b1a4fb6b989/lxml-6.0.1-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:21e364e1bb731489e3f4d51db416f991a5d5da5d88184728d80ecfb0904b1d68", size = 5641055, upload_time = "2025-08-22T10:33:45.784Z" }, + { url = "https://files.pythonhosted.org/packages/b3/01/15d5fc74ebb49eac4e5df031fbc50713dcc081f4e0068ed963a510b7d457/lxml-6.0.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1bce45a2c32032afddbd84ed8ab092130649acb935536ef7a9559636ce7ffd4a", size = 5242719, upload_time = "2025-08-22T10:33:48.089Z" }, + { url = "https://files.pythonhosted.org/packages/42/a5/1b85e2aaaf8deaa67e04c33bddb41f8e73d07a077bf9db677cec7128bfb4/lxml-6.0.1-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:fa164387ff20ab0e575fa909b11b92ff1481e6876835014e70280769920c4433", size = 4717310, upload_time = "2025-08-22T10:33:49.852Z" }, + { url = "https://files.pythonhosted.org/packages/42/23/f3bb1292f55a725814317172eeb296615db3becac8f1a059b53c51fc1da8/lxml-6.0.1-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7587ac5e000e1594e62278422c5783b34a82b22f27688b1074d71376424b73e8", size = 5254024, upload_time = "2025-08-22T10:33:52.22Z" }, + { url = "https://files.pythonhosted.org/packages/b4/be/4d768f581ccd0386d424bac615d9002d805df7cc8482ae07d529f60a3c1e/lxml-6.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:57478424ac4c9170eabf540237125e8d30fad1940648924c058e7bc9fb9cf6dd", size = 5055335, upload_time = "2025-08-22T10:33:54.041Z" }, + { url = "https://files.pythonhosted.org/packages/40/07/ed61d1a3e77d1a9f856c4fab15ee5c09a2853fb7af13b866bb469a3a6d42/lxml-6.0.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:09c74afc7786c10dd6afaa0be2e4805866beadc18f1d843cf517a7851151b499", size = 4784864, upload_time = "2025-08-22T10:33:56.382Z" }, + { url = "https://files.pythonhosted.org/packages/01/37/77e7971212e5c38a55431744f79dff27fd751771775165caea096d055ca4/lxml-6.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7fd70681aeed83b196482d42a9b0dc5b13bab55668d09ad75ed26dff3be5a2f5", size = 5657173, upload_time = "2025-08-22T10:33:58.698Z" }, + { url = "https://files.pythonhosted.org/packages/32/a3/e98806d483941cd9061cc838b1169626acef7b2807261fbe5e382fcef881/lxml-6.0.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:10a72e456319b030b3dd900df6b1f19d89adf06ebb688821636dc406788cf6ac", size = 5245896, upload_time = "2025-08-22T10:34:00.586Z" }, + { url = "https://files.pythonhosted.org/packages/07/de/9bb5a05e42e8623bf06b4638931ea8c8f5eb5a020fe31703abdbd2e83547/lxml-6.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0fa45fb5f55111ce75b56c703843b36baaf65908f8b8d2fbbc0e249dbc127ed", size = 5267417, upload_time = "2025-08-22T10:34:02.719Z" }, + { url = "https://files.pythonhosted.org/packages/f2/43/c1cb2a7c67226266c463ef8a53b82d42607228beb763b5fbf4867e88a21f/lxml-6.0.1-cp313-cp313-win32.whl", hash = "sha256:01dab65641201e00c69338c9c2b8a0f2f484b6b3a22d10779bb417599fae32b5", size = 3610051, upload_time = "2025-08-22T10:34:04.553Z" }, + { url = "https://files.pythonhosted.org/packages/34/96/6a6c3b8aa480639c1a0b9b6faf2a63fb73ab79ffcd2a91cf28745faa22de/lxml-6.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:bdf8f7c8502552d7bff9e4c98971910a0a59f60f88b5048f608d0a1a75e94d1c", size = 4009325, upload_time = "2025-08-22T10:34:06.24Z" }, + { url = "https://files.pythonhosted.org/packages/8c/66/622e8515121e1fd773e3738dae71b8df14b12006d9fb554ce90886689fd0/lxml-6.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:a6aeca75959426b9fd8d4782c28723ba224fe07cfa9f26a141004210528dcbe2", size = 3670443, upload_time = "2025-08-22T10:34:07.974Z" }, + { url = "https://files.pythonhosted.org/packages/38/e3/b7eb612ce07abe766918a7e581ec6a0e5212352194001fd287c3ace945f0/lxml-6.0.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:29b0e849ec7030e3ecb6112564c9f7ad6881e3b2375dd4a0c486c5c1f3a33859", size = 8426160, upload_time = "2025-08-22T10:34:10.154Z" }, + { url = "https://files.pythonhosted.org/packages/35/8f/ab3639a33595cf284fe733c6526da2ca3afbc5fd7f244ae67f3303cec654/lxml-6.0.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:02a0f7e629f73cc0be598c8b0611bf28ec3b948c549578a26111b01307fd4051", size = 4589288, upload_time = "2025-08-22T10:34:12.972Z" }, + { url = "https://files.pythonhosted.org/packages/2c/65/819d54f2e94d5c4458c1db8c1ccac9d05230b27c1038937d3d788eb406f9/lxml-6.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:beab5e54de016e730875f612ba51e54c331e2fa6dc78ecf9a5415fc90d619348", size = 4964523, upload_time = "2025-08-22T10:34:15.474Z" }, + { url = "https://files.pythonhosted.org/packages/5b/4a/d4a74ce942e60025cdaa883c5a4478921a99ce8607fc3130f1e349a83b28/lxml-6.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:92a08aefecd19ecc4ebf053c27789dd92c87821df2583a4337131cf181a1dffa", size = 5101108, upload_time = "2025-08-22T10:34:17.348Z" }, + { url = "https://files.pythonhosted.org/packages/cb/48/67f15461884074edd58af17b1827b983644d1fae83b3d909e9045a08b61e/lxml-6.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36c8fa7e177649470bc3dcf7eae6bee1e4984aaee496b9ccbf30e97ac4127fa2", size = 5053498, upload_time = "2025-08-22T10:34:19.232Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d4/ec1bf1614828a5492f4af0b6a9ee2eb3e92440aea3ac4fa158e5228b772b/lxml-6.0.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:5d08e0f1af6916267bb7eff21c09fa105620f07712424aaae09e8cb5dd4164d1", size = 5351057, upload_time = "2025-08-22T10:34:21.143Z" }, + { url = "https://files.pythonhosted.org/packages/65/2b/c85929dacac08821f2100cea3eb258ce5c8804a4e32b774f50ebd7592850/lxml-6.0.1-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9705cdfc05142f8c38c97a61bd3a29581ceceb973a014e302ee4a73cc6632476", size = 5671579, upload_time = "2025-08-22T10:34:23.528Z" }, + { url = "https://files.pythonhosted.org/packages/d0/36/cf544d75c269b9aad16752fd9f02d8e171c5a493ca225cb46bb7ba72868c/lxml-6.0.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74555e2da7c1636e30bff4e6e38d862a634cf020ffa591f1f63da96bf8b34772", size = 5250403, upload_time = "2025-08-22T10:34:25.642Z" }, + { url = "https://files.pythonhosted.org/packages/c2/e8/83dbc946ee598fd75fdeae6151a725ddeaab39bb321354a9468d4c9f44f3/lxml-6.0.1-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:e38b5f94c5a2a5dadaddd50084098dfd005e5a2a56cd200aaf5e0a20e8941782", size = 4696712, upload_time = "2025-08-22T10:34:27.753Z" }, + { url = "https://files.pythonhosted.org/packages/f4/72/889c633b47c06205743ba935f4d1f5aa4eb7f0325d701ed2b0540df1b004/lxml-6.0.1-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a5ec101a92ddacb4791977acfc86c1afd624c032974bfb6a21269d1083c9bc49", size = 5268177, upload_time = "2025-08-22T10:34:29.804Z" }, + { url = "https://files.pythonhosted.org/packages/b0/b6/f42a21a1428479b66ea0da7bd13e370436aecaff0cfe93270c7e165bd2a4/lxml-6.0.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:5c17e70c82fd777df586c12114bbe56e4e6f823a971814fd40dec9c0de518772", size = 5094648, upload_time = "2025-08-22T10:34:31.703Z" }, + { url = "https://files.pythonhosted.org/packages/51/b0/5f8c1e8890e2ee1c2053c2eadd1cb0e4b79e2304e2912385f6ca666f48b1/lxml-6.0.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:45fdd0415a0c3d91640b5d7a650a8f37410966a2e9afebb35979d06166fd010e", size = 4745220, upload_time = "2025-08-22T10:34:33.595Z" }, + { url = "https://files.pythonhosted.org/packages/eb/f9/820b5125660dae489ca3a21a36d9da2e75dd6b5ffe922088f94bbff3b8a0/lxml-6.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:d417eba28981e720a14fcb98f95e44e7a772fe25982e584db38e5d3b6ee02e79", size = 5692913, upload_time = "2025-08-22T10:34:35.482Z" }, + { url = "https://files.pythonhosted.org/packages/23/8e/a557fae9eec236618aecf9ff35fec18df41b6556d825f3ad6017d9f6e878/lxml-6.0.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:8e5d116b9e59be7934febb12c41cce2038491ec8fdb743aeacaaf36d6e7597e4", size = 5259816, upload_time = "2025-08-22T10:34:37.482Z" }, + { url = "https://files.pythonhosted.org/packages/fa/fd/b266cfaab81d93a539040be699b5854dd24c84e523a1711ee5f615aa7000/lxml-6.0.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c238f0d0d40fdcb695c439fe5787fa69d40f45789326b3bb6ef0d61c4b588d6e", size = 5276162, upload_time = "2025-08-22T10:34:39.507Z" }, + { url = "https://files.pythonhosted.org/packages/25/6c/6f9610fbf1de002048e80585ea4719591921a0316a8565968737d9f125ca/lxml-6.0.1-cp314-cp314-win32.whl", hash = "sha256:537b6cf1c5ab88cfd159195d412edb3e434fee880f206cbe68dff9c40e17a68a", size = 3669595, upload_time = "2025-08-22T10:34:41.783Z" }, + { url = "https://files.pythonhosted.org/packages/72/a5/506775e3988677db24dc75a7b03e04038e0b3d114ccd4bccea4ce0116c15/lxml-6.0.1-cp314-cp314-win_amd64.whl", hash = "sha256:911d0a2bb3ef3df55b3d97ab325a9ca7e438d5112c102b8495321105d25a441b", size = 4079818, upload_time = "2025-08-22T10:34:44.04Z" }, + { url = "https://files.pythonhosted.org/packages/0a/44/9613f300201b8700215856e5edd056d4e58dd23368699196b58877d4408b/lxml-6.0.1-cp314-cp314-win_arm64.whl", hash = "sha256:2834377b0145a471a654d699bdb3a2155312de492142ef5a1d426af2c60a0a31", size = 3753901, upload_time = "2025-08-22T10:34:45.799Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload_time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload_time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159, upload_time = "2024-04-15T13:44:44.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899, upload_time = "2024-04-15T13:44:43.265Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload_time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload_time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload_time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload_time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "packaging" +version = "25.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload_time = "2025-04-19T11:48:59.673Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload_time = "2025-04-19T11:48:57.875Z" }, +] + +[[package]] +name = "parso" +version = "0.8.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/de/53e0bcf53d13e005bd8c92e7855142494f41171b34c2536b86187474184d/parso-0.8.5.tar.gz", hash = "sha256:034d7354a9a018bdce352f48b2a8a450f05e9d6ee85db84764e9b6bd96dafe5a", size = 401205, upload_time = "2025-08-23T15:15:28.028Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl", hash = "sha256:646204b5ee239c396d040b90f9e272e9a8017c630092bf59980beb62fd033887", size = 106668, upload_time = "2025-08-23T15:15:25.663Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload_time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload_time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload_time = "2025-08-26T14:32:04.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload_time = "2025-08-26T14:32:02.735Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload_time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload_time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload_time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload_time = "2025-08-27T15:23:59.498Z" }, +] + +[[package]] +name = "psutil" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/80/336820c1ad9286a4ded7e845b2eccfcb27851ab8ac6abece774a6ff4d3de/psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456", size = 497003, upload_time = "2025-02-13T21:54:07.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/e6/2d26234410f8b8abdbf891c9da62bee396583f713fb9f3325a4760875d22/psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25", size = 238051, upload_time = "2025-02-13T21:54:12.36Z" }, + { url = "https://files.pythonhosted.org/packages/04/8b/30f930733afe425e3cbfc0e1468a30a18942350c1a8816acfade80c005c4/psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da", size = 239535, upload_time = "2025-02-13T21:54:16.07Z" }, + { url = "https://files.pythonhosted.org/packages/2a/ed/d362e84620dd22876b55389248e522338ed1bf134a5edd3b8231d7207f6d/psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91", size = 275004, upload_time = "2025-02-13T21:54:18.662Z" }, + { url = "https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34", size = 277986, upload_time = "2025-02-13T21:54:21.811Z" }, + { url = "https://files.pythonhosted.org/packages/eb/a2/709e0fe2f093556c17fbafda93ac032257242cabcc7ff3369e2cb76a97aa/psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993", size = 279544, upload_time = "2025-02-13T21:54:24.68Z" }, + { url = "https://files.pythonhosted.org/packages/50/e6/eecf58810b9d12e6427369784efe814a1eec0f492084ce8eb8f4d89d6d61/psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99", size = 241053, upload_time = "2025-02-13T21:54:34.31Z" }, + { url = "https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553", size = 244885, upload_time = "2025-02-13T21:54:37.486Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload_time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload_time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload_time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload_time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "pycparser" +version = "2.23" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload_time = "2025-09-09T13:23:47.91Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload_time = "2025-09-09T13:23:46.651Z" }, +] + +[[package]] +name = "pydantic" +version = "2.11.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types" }, + { name = "pydantic-core" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/dd/4325abf92c39ba8623b5af936ddb36ffcfe0beae70405d456ab1fb2f5b8c/pydantic-2.11.7.tar.gz", hash = "sha256:d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db", size = 788350, upload_time = "2025-06-14T08:33:17.137Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/c0/ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a/pydantic-2.11.7-py3-none-any.whl", hash = "sha256:dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b", size = 444782, upload_time = "2025-06-14T08:33:14.905Z" }, +] + +[[package]] +name = "pydantic-core" +version = "2.33.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz", hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc", size = 435195, upload_time = "2025-04-23T18:33:52.104Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/8a/2b41c97f554ec8c71f2a8a5f85cb56a8b0956addfe8b0efb5b3d77e8bdc3/pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc", size = 2009000, upload_time = "2025-04-23T18:31:25.863Z" }, + { url = "https://files.pythonhosted.org/packages/a1/02/6224312aacb3c8ecbaa959897af57181fb6cf3a3d7917fd44d0f2917e6f2/pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7", size = 1847996, upload_time = "2025-04-23T18:31:27.341Z" }, + { url = "https://files.pythonhosted.org/packages/d6/46/6dcdf084a523dbe0a0be59d054734b86a981726f221f4562aed313dbcb49/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025", size = 1880957, upload_time = "2025-04-23T18:31:28.956Z" }, + { url = "https://files.pythonhosted.org/packages/ec/6b/1ec2c03837ac00886ba8160ce041ce4e325b41d06a034adbef11339ae422/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011", size = 1964199, upload_time = "2025-04-23T18:31:31.025Z" }, + { url = "https://files.pythonhosted.org/packages/2d/1d/6bf34d6adb9debd9136bd197ca72642203ce9aaaa85cfcbfcf20f9696e83/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f", size = 2120296, upload_time = "2025-04-23T18:31:32.514Z" }, + { url = "https://files.pythonhosted.org/packages/e0/94/2bd0aaf5a591e974b32a9f7123f16637776c304471a0ab33cf263cf5591a/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88", size = 2676109, upload_time = "2025-04-23T18:31:33.958Z" }, + { url = "https://files.pythonhosted.org/packages/f9/41/4b043778cf9c4285d59742281a769eac371b9e47e35f98ad321349cc5d61/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1", size = 2002028, upload_time = "2025-04-23T18:31:39.095Z" }, + { url = "https://files.pythonhosted.org/packages/cb/d5/7bb781bf2748ce3d03af04d5c969fa1308880e1dca35a9bd94e1a96a922e/pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b", size = 2100044, upload_time = "2025-04-23T18:31:41.034Z" }, + { url = "https://files.pythonhosted.org/packages/fe/36/def5e53e1eb0ad896785702a5bbfd25eed546cdcf4087ad285021a90ed53/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1", size = 2058881, upload_time = "2025-04-23T18:31:42.757Z" }, + { url = "https://files.pythonhosted.org/packages/01/6c/57f8d70b2ee57fc3dc8b9610315949837fa8c11d86927b9bb044f8705419/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6", size = 2227034, upload_time = "2025-04-23T18:31:44.304Z" }, + { url = "https://files.pythonhosted.org/packages/27/b9/9c17f0396a82b3d5cbea4c24d742083422639e7bb1d5bf600e12cb176a13/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea", size = 2234187, upload_time = "2025-04-23T18:31:45.891Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6a/adf5734ffd52bf86d865093ad70b2ce543415e0e356f6cacabbc0d9ad910/pydantic_core-2.33.2-cp312-cp312-win32.whl", hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290", size = 1892628, upload_time = "2025-04-23T18:31:47.819Z" }, + { url = "https://files.pythonhosted.org/packages/43/e4/5479fecb3606c1368d496a825d8411e126133c41224c1e7238be58b87d7e/pydantic_core-2.33.2-cp312-cp312-win_amd64.whl", hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2", size = 1955866, upload_time = "2025-04-23T18:31:49.635Z" }, + { url = "https://files.pythonhosted.org/packages/0d/24/8b11e8b3e2be9dd82df4b11408a67c61bb4dc4f8e11b5b0fc888b38118b5/pydantic_core-2.33.2-cp312-cp312-win_arm64.whl", hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab", size = 1888894, upload_time = "2025-04-23T18:31:51.609Z" }, + { url = "https://files.pythonhosted.org/packages/46/8c/99040727b41f56616573a28771b1bfa08a3d3fe74d3d513f01251f79f172/pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f", size = 2015688, upload_time = "2025-04-23T18:31:53.175Z" }, + { url = "https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6", size = 1844808, upload_time = "2025-04-23T18:31:54.79Z" }, + { url = "https://files.pythonhosted.org/packages/6f/5e/a0a7b8885c98889a18b6e376f344da1ef323d270b44edf8174d6bce4d622/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef", size = 1885580, upload_time = "2025-04-23T18:31:57.393Z" }, + { url = "https://files.pythonhosted.org/packages/3b/2a/953581f343c7d11a304581156618c3f592435523dd9d79865903272c256a/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a", size = 1973859, upload_time = "2025-04-23T18:31:59.065Z" }, + { url = "https://files.pythonhosted.org/packages/e6/55/f1a813904771c03a3f97f676c62cca0c0a4138654107c1b61f19c644868b/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916", size = 2120810, upload_time = "2025-04-23T18:32:00.78Z" }, + { url = "https://files.pythonhosted.org/packages/aa/c3/053389835a996e18853ba107a63caae0b9deb4a276c6b472931ea9ae6e48/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a", size = 2676498, upload_time = "2025-04-23T18:32:02.418Z" }, + { url = "https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d", size = 2000611, upload_time = "2025-04-23T18:32:04.152Z" }, + { url = "https://files.pythonhosted.org/packages/59/a7/63ef2fed1837d1121a894d0ce88439fe3e3b3e48c7543b2a4479eb99c2bd/pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56", size = 2107924, upload_time = "2025-04-23T18:32:06.129Z" }, + { url = "https://files.pythonhosted.org/packages/04/8f/2551964ef045669801675f1cfc3b0d74147f4901c3ffa42be2ddb1f0efc4/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5", size = 2063196, upload_time = "2025-04-23T18:32:08.178Z" }, + { url = "https://files.pythonhosted.org/packages/26/bd/d9602777e77fc6dbb0c7db9ad356e9a985825547dce5ad1d30ee04903918/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e", size = 2236389, upload_time = "2025-04-23T18:32:10.242Z" }, + { url = "https://files.pythonhosted.org/packages/42/db/0e950daa7e2230423ab342ae918a794964b053bec24ba8af013fc7c94846/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162", size = 2239223, upload_time = "2025-04-23T18:32:12.382Z" }, + { url = "https://files.pythonhosted.org/packages/58/4d/4f937099c545a8a17eb52cb67fe0447fd9a373b348ccfa9a87f141eeb00f/pydantic_core-2.33.2-cp313-cp313-win32.whl", hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849", size = 1900473, upload_time = "2025-04-23T18:32:14.034Z" }, + { url = "https://files.pythonhosted.org/packages/a0/75/4a0a9bac998d78d889def5e4ef2b065acba8cae8c93696906c3a91f310ca/pydantic_core-2.33.2-cp313-cp313-win_amd64.whl", hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9", size = 1955269, upload_time = "2025-04-23T18:32:15.783Z" }, + { url = "https://files.pythonhosted.org/packages/f9/86/1beda0576969592f1497b4ce8e7bc8cbdf614c352426271b1b10d5f0aa64/pydantic_core-2.33.2-cp313-cp313-win_arm64.whl", hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9", size = 1893921, upload_time = "2025-04-23T18:32:18.473Z" }, + { url = "https://files.pythonhosted.org/packages/a4/7d/e09391c2eebeab681df2b74bfe6c43422fffede8dc74187b2b0bf6fd7571/pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac", size = 1806162, upload_time = "2025-04-23T18:32:20.188Z" }, + { url = "https://files.pythonhosted.org/packages/f1/3d/847b6b1fed9f8ed3bb95a9ad04fbd0b212e832d4f0f50ff4d9ee5a9f15cf/pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5", size = 1981560, upload_time = "2025-04-23T18:32:22.354Z" }, + { url = "https://files.pythonhosted.org/packages/6f/9a/e73262f6c6656262b5fdd723ad90f518f579b7bc8622e43a942eec53c938/pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl", hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9", size = 1935777, upload_time = "2025-04-23T18:32:25.088Z" }, +] + +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload_time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload_time = "2025-06-21T13:39:07.939Z" }, +] + +[[package]] +name = "pyld" +version = "2.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools" }, + { name = "frozendict" }, + { name = "lxml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/0b/d97dddcc079d4961aa38bec1ad444b8a3e39ea0fd5627682cac25d452c82/PyLD-2.0.4.tar.gz", hash = "sha256:311e350f0dbc964311c79c28e86f84e195a81d06fef5a6f6ac2a4f6391ceeacc", size = 70976, upload_time = "2024-02-16T17:35:51.481Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/cd/80760be197a4bd08e7c136ef4bcb4a2c63fc799d8d91f4c177b21183135e/PyLD-2.0.4-py3-none-any.whl", hash = "sha256:6dab9905644616df33f8755489fc9b354ed7d832d387b7d1974b4fbd3b8d2a89", size = 70868, upload_time = "2024-02-16T17:35:49Z" }, +] + +[[package]] +name = "pytest" +version = "8.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/5c/00a0e072241553e1a7496d638deababa67c5058571567b92a7eaa258397c/pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01", size = 1519618, upload_time = "2025-09-04T14:34:22.711Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/a4/20da314d277121d6534b3a980b29035dcd51e6744bd79075a6ce8fa4eb8d/pytest-8.4.2-py3-none-any.whl", hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79", size = 365750, upload_time = "2025-09-04T14:34:20.226Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload_time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload_time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "pywin32" +version = "311" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/ab/01ea1943d4eba0f850c3c61e78e8dd59757ff815ff3ccd0a84de5f541f42/pywin32-311-cp312-cp312-win32.whl", hash = "sha256:750ec6e621af2b948540032557b10a2d43b0cee2ae9758c54154d711cc852d31", size = 8706543, upload_time = "2025-07-14T20:13:20.765Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a8/a0e8d07d4d051ec7502cd58b291ec98dcc0c3fff027caad0470b72cfcc2f/pywin32-311-cp312-cp312-win_amd64.whl", hash = "sha256:b8c095edad5c211ff31c05223658e71bf7116daa0ecf3ad85f3201ea3190d067", size = 9495040, upload_time = "2025-07-14T20:13:22.543Z" }, + { url = "https://files.pythonhosted.org/packages/ba/3a/2ae996277b4b50f17d61f0603efd8253cb2d79cc7ae159468007b586396d/pywin32-311-cp312-cp312-win_arm64.whl", hash = "sha256:e286f46a9a39c4a18b319c28f59b61de793654af2f395c102b4f819e584b5852", size = 8710102, upload_time = "2025-07-14T20:13:24.682Z" }, + { url = "https://files.pythonhosted.org/packages/a5/be/3fd5de0979fcb3994bfee0d65ed8ca9506a8a1260651b86174f6a86f52b3/pywin32-311-cp313-cp313-win32.whl", hash = "sha256:f95ba5a847cba10dd8c4d8fefa9f2a6cf283b8b88ed6178fa8a6c1ab16054d0d", size = 8705700, upload_time = "2025-07-14T20:13:26.471Z" }, + { url = "https://files.pythonhosted.org/packages/e3/28/e0a1909523c6890208295a29e05c2adb2126364e289826c0a8bc7297bd5c/pywin32-311-cp313-cp313-win_amd64.whl", hash = "sha256:718a38f7e5b058e76aee1c56ddd06908116d35147e133427e59a3983f703a20d", size = 9494700, upload_time = "2025-07-14T20:13:28.243Z" }, + { url = "https://files.pythonhosted.org/packages/04/bf/90339ac0f55726dce7d794e6d79a18a91265bdf3aa70b6b9ca52f35e022a/pywin32-311-cp313-cp313-win_arm64.whl", hash = "sha256:7b4075d959648406202d92a2310cb990fea19b535c7f4a78d3f5e10b926eeb8a", size = 8709318, upload_time = "2025-07-14T20:13:30.348Z" }, + { url = "https://files.pythonhosted.org/packages/c9/31/097f2e132c4f16d99a22bfb777e0fd88bd8e1c634304e102f313af69ace5/pywin32-311-cp314-cp314-win32.whl", hash = "sha256:b7a2c10b93f8986666d0c803ee19b5990885872a7de910fc460f9b0c2fbf92ee", size = 8840714, upload_time = "2025-07-14T20:13:32.449Z" }, + { url = "https://files.pythonhosted.org/packages/90/4b/07c77d8ba0e01349358082713400435347df8426208171ce297da32c313d/pywin32-311-cp314-cp314-win_amd64.whl", hash = "sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87", size = 9656800, upload_time = "2025-07-14T20:13:34.312Z" }, + { url = "https://files.pythonhosted.org/packages/c0/d2/21af5c535501a7233e734b8af901574572da66fcc254cb35d0609c9080dd/pywin32-311-cp314-cp314-win_arm64.whl", hash = "sha256:a508e2d9025764a8270f93111a970e1d0fbfc33f4153b388bb649b7eec4f9b42", size = 8932540, upload_time = "2025-07-14T20:13:36.379Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload_time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload_time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload_time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload_time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload_time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload_time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload_time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload_time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload_time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload_time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload_time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/60/cb/84a13459c51da6cec1b7b1dc1a47e6db6da50b77ad7fd9c145842750a011/pyzmq-27.1.0-cp313-cp313-android_24_arm64_v8a.whl", hash = "sha256:93ad4b0855a664229559e45c8d23797ceac03183c7b6f5b4428152a6b06684a5", size = 1122436, upload_time = "2025-09-08T23:08:20.801Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/94414759a69a26c3dd674570a81813c46a078767d931a6c70ad29fc585cb/pyzmq-27.1.0-cp313-cp313-android_24_x86_64.whl", hash = "sha256:fbb4f2400bfda24f12f009cba62ad5734148569ff4949b1b6ec3b519444342e6", size = 1156301, upload_time = "2025-09-08T23:08:22.47Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ad/15906493fd40c316377fd8a8f6b1f93104f97a752667763c9b9c1b71d42d/pyzmq-27.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:e343d067f7b151cfe4eb3bb796a7752c9d369eed007b91231e817071d2c2fec7", size = 1341197, upload_time = "2025-09-08T23:08:24.286Z" }, + { url = "https://files.pythonhosted.org/packages/14/1d/d343f3ce13db53a54cb8946594e567410b2125394dafcc0268d8dda027e0/pyzmq-27.1.0-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:08363b2011dec81c354d694bdecaef4770e0ae96b9afea70b3f47b973655cc05", size = 897275, upload_time = "2025-09-08T23:08:26.063Z" }, + { url = "https://files.pythonhosted.org/packages/69/2d/d83dd6d7ca929a2fc67d2c3005415cdf322af7751d773524809f9e585129/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d54530c8c8b5b8ddb3318f481297441af102517602b569146185fa10b63f4fa9", size = 660469, upload_time = "2025-09-08T23:08:27.623Z" }, + { url = "https://files.pythonhosted.org/packages/3e/cd/9822a7af117f4bc0f1952dbe9ef8358eb50a24928efd5edf54210b850259/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f3afa12c392f0a44a2414056d730eebc33ec0926aae92b5ad5cf26ebb6cc128", size = 847961, upload_time = "2025-09-08T23:08:29.672Z" }, + { url = "https://files.pythonhosted.org/packages/9a/12/f003e824a19ed73be15542f172fd0ec4ad0b60cf37436652c93b9df7c585/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c65047adafe573ff023b3187bb93faa583151627bc9c51fc4fb2c561ed689d39", size = 1650282, upload_time = "2025-09-08T23:08:31.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4a/e82d788ed58e9a23995cee70dbc20c9aded3d13a92d30d57ec2291f1e8a3/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:90e6e9441c946a8b0a667356f7078d96411391a3b8f80980315455574177ec97", size = 2024468, upload_time = "2025-09-08T23:08:33.543Z" }, + { url = "https://files.pythonhosted.org/packages/d9/94/2da0a60841f757481e402b34bf4c8bf57fa54a5466b965de791b1e6f747d/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:add071b2d25f84e8189aaf0882d39a285b42fa3853016ebab234a5e78c7a43db", size = 1885394, upload_time = "2025-09-08T23:08:35.51Z" }, + { url = "https://files.pythonhosted.org/packages/4f/6f/55c10e2e49ad52d080dc24e37adb215e5b0d64990b57598abc2e3f01725b/pyzmq-27.1.0-cp313-cp313t-win32.whl", hash = "sha256:7ccc0700cfdf7bd487bea8d850ec38f204478681ea02a582a8da8171b7f90a1c", size = 574964, upload_time = "2025-09-08T23:08:37.178Z" }, + { url = "https://files.pythonhosted.org/packages/87/4d/2534970ba63dd7c522d8ca80fb92777f362c0f321900667c615e2067cb29/pyzmq-27.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8085a9fba668216b9b4323be338ee5437a235fe275b9d1610e422ccc279733e2", size = 641029, upload_time = "2025-09-08T23:08:40.595Z" }, + { url = "https://files.pythonhosted.org/packages/f6/fa/f8aea7a28b0641f31d40dea42d7ef003fded31e184ef47db696bc74cd610/pyzmq-27.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:6bb54ca21bcfe361e445256c15eedf083f153811c37be87e0514934d6913061e", size = 561541, upload_time = "2025-09-08T23:08:42.668Z" }, + { url = "https://files.pythonhosted.org/packages/87/45/19efbb3000956e82d0331bafca5d9ac19ea2857722fa2caacefb6042f39d/pyzmq-27.1.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:ce980af330231615756acd5154f29813d553ea555485ae712c491cd483df6b7a", size = 1341197, upload_time = "2025-09-08T23:08:44.973Z" }, + { url = "https://files.pythonhosted.org/packages/48/43/d72ccdbf0d73d1343936296665826350cb1e825f92f2db9db3e61c2162a2/pyzmq-27.1.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1779be8c549e54a1c38f805e56d2a2e5c009d26de10921d7d51cfd1c8d4632ea", size = 897175, upload_time = "2025-09-08T23:08:46.601Z" }, + { url = "https://files.pythonhosted.org/packages/2f/2e/a483f73a10b65a9ef0161e817321d39a770b2acf8bcf3004a28d90d14a94/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7200bb0f03345515df50d99d3db206a0a6bee1955fbb8c453c76f5bf0e08fb96", size = 660427, upload_time = "2025-09-08T23:08:48.187Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d2/5f36552c2d3e5685abe60dfa56f91169f7a2d99bbaf67c5271022ab40863/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01c0e07d558b06a60773744ea6251f769cd79a41a97d11b8bf4ab8f034b0424d", size = 847929, upload_time = "2025-09-08T23:08:49.76Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2a/404b331f2b7bf3198e9945f75c4c521f0c6a3a23b51f7a4a401b94a13833/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:80d834abee71f65253c91540445d37c4c561e293ba6e741b992f20a105d69146", size = 1650193, upload_time = "2025-09-08T23:08:51.7Z" }, + { url = "https://files.pythonhosted.org/packages/1c/0b/f4107e33f62a5acf60e3ded67ed33d79b4ce18de432625ce2fc5093d6388/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:544b4e3b7198dde4a62b8ff6685e9802a9a1ebf47e77478a5eb88eca2a82f2fd", size = 2024388, upload_time = "2025-09-08T23:08:53.393Z" }, + { url = "https://files.pythonhosted.org/packages/0d/01/add31fe76512642fd6e40e3a3bd21f4b47e242c8ba33efb6809e37076d9b/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cedc4c68178e59a4046f97eca31b148ddcf51e88677de1ef4e78cf06c5376c9a", size = 1885316, upload_time = "2025-09-08T23:08:55.702Z" }, + { url = "https://files.pythonhosted.org/packages/c4/59/a5f38970f9bf07cee96128de79590bb354917914a9be11272cfc7ff26af0/pyzmq-27.1.0-cp314-cp314t-win32.whl", hash = "sha256:1f0b2a577fd770aa6f053211a55d1c47901f4d537389a034c690291485e5fe92", size = 587472, upload_time = "2025-09-08T23:08:58.18Z" }, + { url = "https://files.pythonhosted.org/packages/70/d8/78b1bad170f93fcf5e3536e70e8fadac55030002275c9a29e8f5719185de/pyzmq-27.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:19c9468ae0437f8074af379e986c5d3d7d7bfe033506af442e8c879732bedbe0", size = 661401, upload_time = "2025-09-08T23:08:59.802Z" }, + { url = "https://files.pythonhosted.org/packages/81/d6/4bfbb40c9a0b42fc53c7cf442f6385db70b40f74a783130c5d0a5aa62228/pyzmq-27.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dc5dbf68a7857b59473f7df42650c621d7e8923fb03fa74a526890f4d33cc4d7", size = 575170, upload_time = "2025-09-08T23:09:01.418Z" }, +] + +[[package]] +name = "requests" +version = "2.32.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload_time = "2025-08-18T20:46:02.573Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload_time = "2025-08-18T20:46:00.542Z" }, +] + +[[package]] +name = "rich" +version = "14.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fe/75/af448d8e52bf1d8fa6a9d089ca6c07ff4453d86c65c145d0a300bb073b9b/rich-14.1.0.tar.gz", hash = "sha256:e497a48b844b0320d45007cdebfeaeed8db2a4f4bcf49f15e455cfc4af11eaa8", size = 224441, upload_time = "2025-07-25T07:32:58.125Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl", hash = "sha256:536f5f1785986d6dbdea3c75205c473f970777b4a0d6c6dd1b696aa05a3fa04f", size = 243368, upload_time = "2025-07-25T07:32:56.73Z" }, +] + +[[package]] +name = "shellingham" +version = "1.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload_time = "2023-10-24T04:13:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload_time = "2023-10-24T04:13:38.866Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload_time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload_time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.43" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "(python_full_version < '3.14' and platform_machine == 'AMD64') or (python_full_version < '3.14' and platform_machine == 'WIN32') or (python_full_version < '3.14' and platform_machine == 'aarch64') or (python_full_version < '3.14' and platform_machine == 'amd64') or (python_full_version < '3.14' and platform_machine == 'ppc64le') or (python_full_version < '3.14' and platform_machine == 'win32') or (python_full_version < '3.14' and platform_machine == 'x86_64')" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d7/bc/d59b5d97d27229b0e009bd9098cd81af71c2fa5549c580a0a67b9bed0496/sqlalchemy-2.0.43.tar.gz", hash = "sha256:788bfcef6787a7764169cfe9859fe425bf44559619e1d9f56f5bddf2ebf6f417", size = 9762949, upload_time = "2025-08-11T14:24:58.438Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/db/20c78f1081446095450bdc6ee6cc10045fce67a8e003a5876b6eaafc5cc4/sqlalchemy-2.0.43-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:20d81fc2736509d7a2bd33292e489b056cbae543661bb7de7ce9f1c0cd6e7f24", size = 2134891, upload_time = "2025-08-11T15:51:13.019Z" }, + { url = "https://files.pythonhosted.org/packages/45/0a/3d89034ae62b200b4396f0f95319f7d86e9945ee64d2343dcad857150fa2/sqlalchemy-2.0.43-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25b9fc27650ff5a2c9d490c13c14906b918b0de1f8fcbb4c992712d8caf40e83", size = 2123061, upload_time = "2025-08-11T15:51:14.319Z" }, + { url = "https://files.pythonhosted.org/packages/cb/10/2711f7ff1805919221ad5bee205971254845c069ee2e7036847103ca1e4c/sqlalchemy-2.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6772e3ca8a43a65a37c88e2f3e2adfd511b0b1da37ef11ed78dea16aeae85bd9", size = 3320384, upload_time = "2025-08-11T15:52:35.088Z" }, + { url = "https://files.pythonhosted.org/packages/6e/0e/3d155e264d2ed2778484006ef04647bc63f55b3e2d12e6a4f787747b5900/sqlalchemy-2.0.43-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a113da919c25f7f641ffbd07fbc9077abd4b3b75097c888ab818f962707eb48", size = 3329648, upload_time = "2025-08-11T15:56:34.153Z" }, + { url = "https://files.pythonhosted.org/packages/5b/81/635100fb19725c931622c673900da5efb1595c96ff5b441e07e3dd61f2be/sqlalchemy-2.0.43-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4286a1139f14b7d70141c67a8ae1582fc2b69105f1b09d9573494eb4bb4b2687", size = 3258030, upload_time = "2025-08-11T15:52:36.933Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ed/a99302716d62b4965fded12520c1cbb189f99b17a6d8cf77611d21442e47/sqlalchemy-2.0.43-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:529064085be2f4d8a6e5fab12d36ad44f1909a18848fcfbdb59cc6d4bbe48efe", size = 3294469, upload_time = "2025-08-11T15:56:35.553Z" }, + { url = "https://files.pythonhosted.org/packages/5d/a2/3a11b06715149bf3310b55a98b5c1e84a42cfb949a7b800bc75cb4e33abc/sqlalchemy-2.0.43-cp312-cp312-win32.whl", hash = "sha256:b535d35dea8bbb8195e7e2b40059e2253acb2b7579b73c1b432a35363694641d", size = 2098906, upload_time = "2025-08-11T15:55:00.645Z" }, + { url = "https://files.pythonhosted.org/packages/bc/09/405c915a974814b90aa591280623adc6ad6b322f61fd5cff80aeaef216c9/sqlalchemy-2.0.43-cp312-cp312-win_amd64.whl", hash = "sha256:1c6d85327ca688dbae7e2b06d7d84cfe4f3fffa5b5f9e21bb6ce9d0e1a0e0e0a", size = 2126260, upload_time = "2025-08-11T15:55:02.965Z" }, + { url = "https://files.pythonhosted.org/packages/41/1c/a7260bd47a6fae7e03768bf66451437b36451143f36b285522b865987ced/sqlalchemy-2.0.43-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e7c08f57f75a2bb62d7ee80a89686a5e5669f199235c6d1dac75cd59374091c3", size = 2130598, upload_time = "2025-08-11T15:51:15.903Z" }, + { url = "https://files.pythonhosted.org/packages/8e/84/8a337454e82388283830b3586ad7847aa9c76fdd4f1df09cdd1f94591873/sqlalchemy-2.0.43-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:14111d22c29efad445cd5021a70a8b42f7d9152d8ba7f73304c4d82460946aaa", size = 2118415, upload_time = "2025-08-11T15:51:17.256Z" }, + { url = "https://files.pythonhosted.org/packages/cf/ff/22ab2328148492c4d71899d62a0e65370ea66c877aea017a244a35733685/sqlalchemy-2.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21b27b56eb2f82653168cefe6cb8e970cdaf4f3a6cb2c5e3c3c1cf3158968ff9", size = 3248707, upload_time = "2025-08-11T15:52:38.444Z" }, + { url = "https://files.pythonhosted.org/packages/dc/29/11ae2c2b981de60187f7cbc84277d9d21f101093d1b2e945c63774477aba/sqlalchemy-2.0.43-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c5a9da957c56e43d72126a3f5845603da00e0293720b03bde0aacffcf2dc04f", size = 3253602, upload_time = "2025-08-11T15:56:37.348Z" }, + { url = "https://files.pythonhosted.org/packages/b8/61/987b6c23b12c56d2be451bc70900f67dd7d989d52b1ee64f239cf19aec69/sqlalchemy-2.0.43-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d79f9fdc9584ec83d1b3c75e9f4595c49017f5594fee1a2217117647225d738", size = 3183248, upload_time = "2025-08-11T15:52:39.865Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/29d216002d4593c2ce1c0ec2cec46dda77bfbcd221e24caa6e85eff53d89/sqlalchemy-2.0.43-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9df7126fd9db49e3a5a3999442cc67e9ee8971f3cb9644250107d7296cb2a164", size = 3219363, upload_time = "2025-08-11T15:56:39.11Z" }, + { url = "https://files.pythonhosted.org/packages/b6/e4/bd78b01919c524f190b4905d47e7630bf4130b9f48fd971ae1c6225b6f6a/sqlalchemy-2.0.43-cp313-cp313-win32.whl", hash = "sha256:7f1ac7828857fcedb0361b48b9ac4821469f7694089d15550bbcf9ab22564a1d", size = 2096718, upload_time = "2025-08-11T15:55:05.349Z" }, + { url = "https://files.pythonhosted.org/packages/ac/a5/ca2f07a2a201f9497de1928f787926613db6307992fe5cda97624eb07c2f/sqlalchemy-2.0.43-cp313-cp313-win_amd64.whl", hash = "sha256:971ba928fcde01869361f504fcff3b7143b47d30de188b11c6357c0505824197", size = 2123200, upload_time = "2025-08-11T15:55:07.932Z" }, + { url = "https://files.pythonhosted.org/packages/b8/d9/13bdde6521f322861fab67473cec4b1cc8999f3871953531cf61945fad92/sqlalchemy-2.0.43-py3-none-any.whl", hash = "sha256:1681c21dd2ccee222c2fe0bef671d1aef7c504087c9c4e800371cfcc8ac966fc", size = 1924759, upload_time = "2025-08-11T15:39:53.024Z" }, +] + +[[package]] +name = "sqlmodel" +version = "0.0.24" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, + { name = "sqlalchemy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/4b/c2ad0496f5bdc6073d9b4cef52be9c04f2b37a5773441cc6600b1857648b/sqlmodel-0.0.24.tar.gz", hash = "sha256:cc5c7613c1a5533c9c7867e1aab2fd489a76c9e8a061984da11b4e613c182423", size = 116780, upload_time = "2025-03-07T05:43:32.887Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/91/484cd2d05569892b7fef7f5ceab3bc89fb0f8a8c0cde1030d383dbc5449c/sqlmodel-0.0.24-py3-none-any.whl", hash = "sha256:6778852f09370908985b667d6a3ab92910d0d5ec88adcaf23dbc242715ff7193", size = 28622, upload_time = "2025-03-07T05:43:30.37Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens" }, + { name = "executing" }, + { name = "pure-eval" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload_time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload_time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "toml" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f", size = 22253, upload_time = "2020-11-01T01:40:22.204Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588, upload_time = "2020-11-01T01:40:20.672Z" }, +] + +[[package]] +name = "tornado" +version = "6.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/ce/1eb500eae19f4648281bb2186927bb062d2438c2e5093d1360391afd2f90/tornado-6.5.2.tar.gz", hash = "sha256:ab53c8f9a0fa351e2c0741284e06c7a45da86afb544133201c5cc8578eb076a0", size = 510821, upload_time = "2025-08-08T18:27:00.78Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/48/6a7529df2c9cc12efd2e8f5dd219516184d703b34c06786809670df5b3bd/tornado-6.5.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:2436822940d37cde62771cff8774f4f00b3c8024fe482e16ca8387b8a2724db6", size = 442563, upload_time = "2025-08-08T18:26:42.945Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b5/9b575a0ed3e50b00c40b08cbce82eb618229091d09f6d14bce80fc01cb0b/tornado-6.5.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:583a52c7aa94ee046854ba81d9ebb6c81ec0fd30386d96f7640c96dad45a03ef", size = 440729, upload_time = "2025-08-08T18:26:44.473Z" }, + { url = "https://files.pythonhosted.org/packages/1b/4e/619174f52b120efcf23633c817fd3fed867c30bff785e2cd5a53a70e483c/tornado-6.5.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0fe179f28d597deab2842b86ed4060deec7388f1fd9c1b4a41adf8af058907e", size = 444295, upload_time = "2025-08-08T18:26:46.021Z" }, + { url = "https://files.pythonhosted.org/packages/95/fa/87b41709552bbd393c85dd18e4e3499dcd8983f66e7972926db8d96aa065/tornado-6.5.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b186e85d1e3536d69583d2298423744740986018e393d0321df7340e71898882", size = 443644, upload_time = "2025-08-08T18:26:47.625Z" }, + { url = "https://files.pythonhosted.org/packages/f9/41/fb15f06e33d7430ca89420283a8762a4e6b8025b800ea51796ab5e6d9559/tornado-6.5.2-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e792706668c87709709c18b353da1f7662317b563ff69f00bab83595940c7108", size = 443878, upload_time = "2025-08-08T18:26:50.599Z" }, + { url = "https://files.pythonhosted.org/packages/11/92/fe6d57da897776ad2e01e279170ea8ae726755b045fe5ac73b75357a5a3f/tornado-6.5.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:06ceb1300fd70cb20e43b1ad8aaee0266e69e7ced38fa910ad2e03285009ce7c", size = 444549, upload_time = "2025-08-08T18:26:51.864Z" }, + { url = "https://files.pythonhosted.org/packages/9b/02/c8f4f6c9204526daf3d760f4aa555a7a33ad0e60843eac025ccfd6ff4a93/tornado-6.5.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:74db443e0f5251be86cbf37929f84d8c20c27a355dd452a5cfa2aada0d001ec4", size = 443973, upload_time = "2025-08-08T18:26:53.625Z" }, + { url = "https://files.pythonhosted.org/packages/ae/2d/f5f5707b655ce2317190183868cd0f6822a1121b4baeae509ceb9590d0bd/tornado-6.5.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b5e735ab2889d7ed33b32a459cac490eda71a1ba6857b0118de476ab6c366c04", size = 443954, upload_time = "2025-08-08T18:26:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/e8/59/593bd0f40f7355806bf6573b47b8c22f8e1374c9b6fd03114bd6b7a3dcfd/tornado-6.5.2-cp39-abi3-win32.whl", hash = "sha256:c6f29e94d9b37a95013bb669616352ddb82e3bfe8326fccee50583caebc8a5f0", size = 445023, upload_time = "2025-08-08T18:26:56.677Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2a/f609b420c2f564a748a2d80ebfb2ee02a73ca80223af712fca591386cafb/tornado-6.5.2-cp39-abi3-win_amd64.whl", hash = "sha256:e56a5af51cc30dd2cae649429af65ca2f6571da29504a07995175df14c18f35f", size = 445427, upload_time = "2025-08-08T18:26:57.91Z" }, + { url = "https://files.pythonhosted.org/packages/5e/4f/e1f65e8f8c76d73658b33d33b81eed4322fb5085350e4328d5c956f0c8f9/tornado-6.5.2-cp39-abi3-win_arm64.whl", hash = "sha256:d6c33dc3672e3a1f3618eb63b7ef4683a7688e7b9e6e8f0d9aa5726360a004af", size = 444456, upload_time = "2025-08-08T18:26:59.207Z" }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload_time = "2024-04-19T11:11:49.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload_time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "typer" +version = "0.17.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "rich" }, + { name = "shellingham" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/e8/2a73ccf9874ec4c7638f172efc8972ceab13a0e3480b389d6ed822f7a822/typer-0.17.4.tar.gz", hash = "sha256:b77dc07d849312fd2bb5e7f20a7af8985c7ec360c45b051ed5412f64d8dc1580", size = 103734, upload_time = "2025-09-05T18:14:40.746Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/72/6b3e70d32e89a5cbb6a4513726c1ae8762165b027af569289e19ec08edd8/typer-0.17.4-py3-none-any.whl", hash = "sha256:015534a6edaa450e7007eba705d5c18c3349dcea50a6ad79a5ed530967575824", size = 46643, upload_time = "2025-09-05T18:14:39.166Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload_time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload_time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "typing-inspection" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b1/0c11f5058406b3af7609f121aaa6b609744687f1d158b3c3a5bf4cc94238/typing_inspection-0.4.1.tar.gz", hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28", size = 75726, upload_time = "2025-05-21T18:55:23.885Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl", hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51", size = 14552, upload_time = "2025-05-21T18:55:22.152Z" }, +] + +[[package]] +name = "urllib3" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload_time = "2025-06-18T14:07:41.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload_time = "2025-06-18T14:07:40.39Z" }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301, upload_time = "2024-01-06T02:10:57.829Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166, upload_time = "2024-01-06T02:10:55.763Z" }, +] diff --git a/version/000_context.jsonld b/version/000_context.jsonld new file mode 100644 index 00000000..7c19d8d2 --- /dev/null +++ b/version/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/directory_date/", + "directory_date": "https://espri-mod.github.io/mip-cmor-tables/directory_date" + } +} diff --git a/version/creation_date.json b/version/creation_date.json new file mode 100644 index 00000000..578928fe --- /dev/null +++ b/version/creation_date.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "creationdate", + "type": "directory_date" +} diff --git a/verticalLabel/000_context.jsonld b/verticalLabel/000_context.jsonld new file mode 100644 index 00000000..7976007c --- /dev/null +++ b/verticalLabel/000_context.jsonld @@ -0,0 +1,8 @@ +{ + "@context": { + "id": "@id", + "type": "@type", + "@base": "https://espri-mod.github.io/mip-cmor-tables/vertical_label/", + "vertical_label": "https://espri-mod.github.io/mip-cmor-tables/vertical_label" + } +} diff --git a/verticalLabel/1000hPa.json b/verticalLabel/1000hPa.json new file mode 100644 index 00000000..f0be77c2 --- /dev/null +++ b/verticalLabel/1000hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "1000hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/100hPa.json b/verticalLabel/100hPa.json new file mode 100644 index 00000000..4a30517e --- /dev/null +++ b/verticalLabel/100hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "100hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/10hPa.json b/verticalLabel/10hPa.json new file mode 100644 index 00000000..711d4a54 --- /dev/null +++ b/verticalLabel/10hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "10hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/200hPa.json b/verticalLabel/200hPa.json new file mode 100644 index 00000000..b2ed0a12 --- /dev/null +++ b/verticalLabel/200hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "200hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/220hPa.json b/verticalLabel/220hPa.json new file mode 100644 index 00000000..746b542e --- /dev/null +++ b/verticalLabel/220hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "220hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/500hPa.json b/verticalLabel/500hPa.json new file mode 100644 index 00000000..97ebad4b --- /dev/null +++ b/verticalLabel/500hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "500hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/560hPa.json b/verticalLabel/560hPa.json new file mode 100644 index 00000000..7fb1980b --- /dev/null +++ b/verticalLabel/560hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "560hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/700hPa.json b/verticalLabel/700hPa.json new file mode 100644 index 00000000..8c2386e0 --- /dev/null +++ b/verticalLabel/700hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "700hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/840hPa.json b/verticalLabel/840hPa.json new file mode 100644 index 00000000..9d4a5cee --- /dev/null +++ b/verticalLabel/840hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "840hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/850hPa.json b/verticalLabel/850hPa.json new file mode 100644 index 00000000..a9e17651 --- /dev/null +++ b/verticalLabel/850hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "850hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/925hPa.json b/verticalLabel/925hPa.json new file mode 100644 index 00000000..40d698fa --- /dev/null +++ b/verticalLabel/925hPa.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "925hPa", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/al.json b/verticalLabel/al.json new file mode 100644 index 00000000..9242fb96 --- /dev/null +++ b/verticalLabel/al.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "al", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/alh.json b/verticalLabel/alh.json new file mode 100644 index 00000000..e0b5104a --- /dev/null +++ b/verticalLabel/alh.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "alh", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d0m.json b/verticalLabel/d0m.json new file mode 100644 index 00000000..061742e1 --- /dev/null +++ b/verticalLabel/d0m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d0m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d1000m.json b/verticalLabel/d1000m.json new file mode 100644 index 00000000..829d6757 --- /dev/null +++ b/verticalLabel/d1000m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d1000m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d100cm.json b/verticalLabel/d100cm.json new file mode 100644 index 00000000..7c0aa1ca --- /dev/null +++ b/verticalLabel/d100cm.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d100cm", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d100m.json b/verticalLabel/d100m.json new file mode 100644 index 00000000..3fe27363 --- /dev/null +++ b/verticalLabel/d100m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d100m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d10cm.json b/verticalLabel/d10cm.json new file mode 100644 index 00000000..fd8d67d1 --- /dev/null +++ b/verticalLabel/d10cm.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d10cm", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d2000m.json b/verticalLabel/d2000m.json new file mode 100644 index 00000000..7c1dd4f9 --- /dev/null +++ b/verticalLabel/d2000m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d2000m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d300m.json b/verticalLabel/d300m.json new file mode 100644 index 00000000..2861b0a1 --- /dev/null +++ b/verticalLabel/d300m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d300m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/d700m.json b/verticalLabel/d700m.json new file mode 100644 index 00000000..90c037ad --- /dev/null +++ b/verticalLabel/d700m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "d700m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/h100m.json b/verticalLabel/h100m.json new file mode 100644 index 00000000..2ac77a25 --- /dev/null +++ b/verticalLabel/h100m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h100m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/h10m.json b/verticalLabel/h10m.json new file mode 100644 index 00000000..476633de --- /dev/null +++ b/verticalLabel/h10m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h10m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/h16.json b/verticalLabel/h16.json new file mode 100644 index 00000000..3ba04f92 --- /dev/null +++ b/verticalLabel/h16.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h16", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/h2m.json b/verticalLabel/h2m.json new file mode 100644 index 00000000..cdccc7de --- /dev/null +++ b/verticalLabel/h2m.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h2m", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/h40.json b/verticalLabel/h40.json new file mode 100644 index 00000000..1745015b --- /dev/null +++ b/verticalLabel/h40.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "h40", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/ol.json b/verticalLabel/ol.json new file mode 100644 index 00000000..18a2a653 --- /dev/null +++ b/verticalLabel/ol.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "ol", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/op20bar.json b/verticalLabel/op20bar.json new file mode 100644 index 00000000..2d816a91 --- /dev/null +++ b/verticalLabel/op20bar.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "op20bar", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/op4.json b/verticalLabel/op4.json new file mode 100644 index 00000000..112d99ea --- /dev/null +++ b/verticalLabel/op4.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "op4", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p19.json b/verticalLabel/p19.json new file mode 100644 index 00000000..fc2ef860 --- /dev/null +++ b/verticalLabel/p19.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p19", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p3.json b/verticalLabel/p3.json new file mode 100644 index 00000000..e592501c --- /dev/null +++ b/verticalLabel/p3.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p3", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p39.json b/verticalLabel/p39.json new file mode 100644 index 00000000..15d0b5f1 --- /dev/null +++ b/verticalLabel/p39.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p39", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p5u.json b/verticalLabel/p5u.json new file mode 100644 index 00000000..0300e38c --- /dev/null +++ b/verticalLabel/p5u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p5u", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p6.json b/verticalLabel/p6.json new file mode 100644 index 00000000..b90ff85f --- /dev/null +++ b/verticalLabel/p6.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p6", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p7c.json b/verticalLabel/p7c.json new file mode 100644 index 00000000..0e821638 --- /dev/null +++ b/verticalLabel/p7c.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p7c", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/p7h.json b/verticalLabel/p7h.json new file mode 100644 index 00000000..b727f386 --- /dev/null +++ b/verticalLabel/p7h.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "p7h", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/rho.json b/verticalLabel/rho.json new file mode 100644 index 00000000..8750e37f --- /dev/null +++ b/verticalLabel/rho.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "rho", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/sl.json b/verticalLabel/sl.json new file mode 100644 index 00000000..c5214cd2 --- /dev/null +++ b/verticalLabel/sl.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "sl", + "type": "vertical_label" +} \ No newline at end of file diff --git a/verticalLabel/u.json b/verticalLabel/u.json new file mode 100644 index 00000000..313e222b --- /dev/null +++ b/verticalLabel/u.json @@ -0,0 +1,5 @@ +{ + "@context": "000_context.jsonld", + "id": "u", + "type": "vertical_label" +} \ No newline at end of file