-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
471ce68
commit 0d71efa
Showing
5 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# WGCM Vocabulary | ||
Everything Vocabulary related | ||
xxxDD : datadescriptor with : | ||
|
||
* Pydantic model of this DD | ||
* Context for ld part of jsonld | ||
* Term in json with a @context pointing to the context.jsonld | ||
|
||
# Directory Structure | ||
|
||
_archive/ | ||
dataDescriptor/ | ||
institutionDD/ # as example | ||
_context.jsonld | ||
_pydantic_model.py | ||
term1.json | ||
term2.json | ||
... | ||
otherDD/ | ||
samefilestructure | ||
...DD/ | ||
|
||
src/ # all scripts used to create/fill datadescriptor | ||
|
||
license # untouch | ||
readme.md # untouch | ||
todo.md # just to see where i am and what im planning to do | ||
|
||
# TODO List : | ||
|
||
|
||
## DD List | ||
|
||
activityDD | ||
experimentDD | ||
reportingIntervalDD | ||
gridLabelDD | ||
sourceDD | ||
variableRootDD | ||
datasetVariantDD | ||
directoryDateDD | ||
datasetEditionDD | ||
brandingSuffixDD | ||
archiveDD | ||
hostCollectionDD | ||
standardNameDD | ||
dataNodeDD | ||
datasetGroupDD | ||
sourceInstitutionDD | ||
nominal- ResolutionDD (nominalResolutionDD) | ||
productTypeDD | ||
realmDD | ||
dataRegionDD | ||
sourceTypeDD | ||
varGroupingCDD | ||
datasetStatusDD | ||
inCollectionsDD | ||
temporalLabelDD | ||
verticalLabelDD | ||
horizontalLabelDD | ||
areaLabelDD | ||
realizationDD | ||
initializationDD | ||
physicsDD | ||
forcingDD | ||
dataConventionsDD | ||
dateCreatedDD** | ||
uniqueFileidDD | ||
variableTableDD | ||
longNameDD | ||
varDefQualifierDD | ||
datasetSpecsDD | ||
gridTypeDD | ||
longInstitutionDD | ||
|
||
## Choose DD | ||
### find relevant Ontology to describe each attribute of each DD | ||
### Define each => Pydantic model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[project] | ||
name = "mip-cmor-tables" | ||
version = "0.1.0" | ||
description = "Add your description here" | ||
authors = [ | ||
{ name = "TROUSSELLIER Laurent", email = "[email protected]" } | ||
] | ||
dependencies = [ | ||
"pyld>=2.0.4", | ||
] | ||
readme = "README.md" | ||
requires-python = ">= 3.8" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.rye] | ||
managed = true | ||
dev-dependencies = [] | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/mip_cmor_tables"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# generated by rye | ||
# use `rye lock` or `rye sync` to update this lockfile | ||
# | ||
# last locked with the following flags: | ||
# pre: false | ||
# features: [] | ||
# all-features: false | ||
# with-sources: false | ||
# generate-hashes: false | ||
# universal: false | ||
|
||
-e file:. | ||
cachetools==5.5.0 | ||
# via pyld | ||
frozendict==2.4.4 | ||
# via pyld | ||
lxml==5.3.0 | ||
# via pyld | ||
pyld==2.0.4 | ||
# via mip-cmor-tables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# generated by rye | ||
# use `rye lock` or `rye sync` to update this lockfile | ||
# | ||
# last locked with the following flags: | ||
# pre: false | ||
# features: [] | ||
# all-features: false | ||
# with-sources: false | ||
# generate-hashes: false | ||
# universal: false | ||
|
||
-e file:. | ||
cachetools==5.5.0 | ||
# via pyld | ||
frozendict==2.4.4 | ||
# via pyld | ||
lxml==5.3.0 | ||
# via pyld | ||
pyld==2.0.4 | ||
# via mip-cmor-tables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
def hello() -> str: | ||
return "Hello from mip-cmor-tables!" |