Skip to content

Commit

Permalink
add uncertainty var info
Browse files Browse the repository at this point in the history
  • Loading branch information
gantian127 committed Mar 7, 2024
1 parent 3c6a1fd commit 3268112
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion src/bmi_dbseabed/dbseabed.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class DbSeabed:
# TODO update the dict to add correct bmi names and links and units
DATA_SERVICES = {
"bathy": {
"name": "seafloor__bathymetry ",
"name": "seafloor__water_depth ",
"link": "https://",
"units": "metres",
},
Expand All @@ -19,36 +19,71 @@ class DbSeabed:
"2017-03-10/data/BDRICM_M_250m_ll.tif",
"units": "percent",
},
"carbonate_unctn": {
"name": "surficial_seafloor_carbonate__content_uncertainty ",
"link": "https://",
"units": "percent",
},
"grainsize": {
"name": "surficial_seafloor_sediment__grainsize",
"link": "https://",
"units": "phi",
},
"grainsize_unctn": {
"name": "surficial_seafloor_sediment__grainsize_uncertainty",
"link": "https://",
"units": "phi",
},
"gravel": {
"name": "surficial_seafloor_sediment_gravel__content",
"link": "https://",
"units": "percent",
},
"gravel_unctn": {
"name": "surficial_seafloor_sediment_gravel__content_uncertainty",
"link": "https://",
"units": "percent",
},
"mud": {
"name": "surficial_seafloor_sediment_mud__content",
"link": "https://",
"units": "percent",
},
"mud_unctn": {
"name": "surficial_seafloor_sediment_mud__content_uncertainty",
"link": "https://",
"units": "percent",
},
"organic_carbon": {
"name": "surficial_seafloor_sediment_organic_carbon__content",
"link": "https://",
"units": "percent",
},
"organic_carbon_unctn": {
"name": "surficial_seafloor_sediment_organic_carbon__content_uncertainty",
"link": "https://",
"units": "percent",
},
"rock": {
"name": "surficial_seafloor_exposed_rock__content",
"link": "https://",
"units": "percent",
},
"rock_unctn": {
"name": "surficial_seafloor_exposed_rock__content_uncertainty",
"link": "https://",
"units": "percent",
},
"sand": {
"name": "surficial_seafloor_sediment_sand__content",
"link": "https://",
"units": "percent",
},
"sand_unctn": {
"name": "surficial_seafloor_sediment_sand__content_uncertainty",
"link": "https://",
"units": "percent",
},
}

def __init__(self):
Expand Down

0 comments on commit 3268112

Please sign in to comment.