WCRP-CORDEX / data-request-table

Machine readable data request tables
MIT License
0 stars 0 forks source link

update standard_names #22

Closed larsbuntemeyer closed 6 months ago

larsbuntemeyer commented 6 months ago

closes #17

does:

df.loc[df.long_name == "Percentage of the Grid Cell Occupied by Lake", "cell_methods"] = "area: mean where lake"
df.loc[df.long_name == "Percentage of the Grid Cell Occupied by Lake", "standard_name"] = "area_fraction"
df.loc[df.long_name == "Percentage of the Grid Cell Occupied by Urban Area", "cell_methods"] = "area: mean where urban"
df.loc[df.long_name == "Percentage of the Grid Cell Occupied by Urban Area", "standard_name"] = "area_fraction"

and

df.loc[df.standard_name == "bedrock_depth", "standard_name"] = "bedrock_depth_below_ground_level"