Adding models to the Glossary - 0 #24
jsvgoncalves
started this conversation in
Workshop Item
Replies: 2 comments 1 reply
|
Here's the list of current schemes we're importing: class GlossaryController:
"""
Controller for the glossary.
Attributes:
engine (Engine): The database engine.
data_dir (Path): The data directory for saving the datasets.
"""
europa_url: ClassVar[str] = "http://publications.europa.eu/resource/distribution/"
fao_url: ClassVar[str] = (
"https://storage.googleapis.com/fao-datalab-caliper/Downloads/"
)
datasets: ClassVar[list[Dataset]] = [
Dataset(
name="ESTAT-CN2024.rdf",
url=(
europa_url
+ "combined-nomenclature-2024/20240425-0/rdf/skos_core/ESTAT-CN2024.rdf"
),
),
Dataset(
name="ESTAT-LoW2015.rdf",
url=europa_url + "low2015/20240425-0/rdf/skos_core/ESTAT-LoW2015.rdf",
),
Dataset(
name="ESTAT-NACE2.1.rdf",
url=(europa_url + "nace2.1/20240425-0/rdf/skos_core/ESTAT-NACE2.1.rdf"),
),
Dataset(
name="ESTAT-ICST-COM.rdf",
url=(europa_url + "icst-com/20240425-0/rdf/skos_core/ESTAT-ICST-COM.rdf"),
),
Dataset(
name="ESTAT-PRODCOM2023.rdf",
url=(
europa_url
+ "prodcom2023/20240425-0/rdf/skos_core/ESTAT-PRODCOM2023.rdf"
),
),
Dataset(name="ISIC4.rdf", url=fao_url + "ISICRev4/ISIC4.rdf"),
Dataset(name="ICC11.rdf", url=fao_url + "ICCv1.1/ICC11.rdf"),
Dataset(name="WCACROPS.rdf", url=fao_url + "WCA2020Crops/WCACROPS.rdf"),
] |
0 replies
|
Data schema drafts Python Codegeneration: |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Goal: Include models that generate LCI datasets in the glossary and link them to other glossary concepts.
Key Questions:
Potential Outcomes:
Modelsas an entity type to the glossary.Candidate Models:
All reactions