Skip to content

Commit

Permalink
Change clm_data_highres name to clm_data_0.125
Browse files Browse the repository at this point in the history
  • Loading branch information
imreddyTeja committed Feb 4, 2025
1 parent 57ccc56 commit 49850e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions clm_data/OutputArtifacts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ git-tree-sha1 = "3f6873a3e67722bda1fd23f7d5a05f5e2df1fe8c"
[[clm_data.download]]
sha256 = "830136abec15551a343b7884d657fb6a79b16a37237681a2becf65bd845aa692"
url = "https://caltech.box.com/shared/static/6pu2f6c99g29qawvjjh3j56drkonpd3z.gz"
[clm_data_highres]

["clm_data_0.125"]
git-tree-sha1 = "e68ba26e07c135f66d1ad678795b4a25c929b1b6"

[[clm_data_highres.download]]
sha256 = "2c7e6ba3c11e1e6ef209c7437aa18fb4cf15edd11332527bf0b41495dccbed19"
url = "https://caltech.box.com/shared/static/kk72iah76p99yggm8knu6me8fh9eiid0.gz"
[["clm_data_0.125".download]]
sha256 = "6f70f18d6f3b4331aea041d27cc658eda1e5ba3b1845f0799e8b8920d8d59837"
url = "https://caltech.box.com/shared/static/5fboqc88422v6qmkd0p3nzexu7y42mfq.gz"
2 changes: 1 addition & 1 deletion clm_data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To recreate the artifact:
### 1. `surfdata_0.9x1.25_16pfts__CMIP6_simyr2000_c170616.nc` and `surfdata_0.125x0.125_16pfts_simyr2000_c151014.nc`
These netCDF files includes comprehensive environmental data with a focus on vegetation represented through different Plant Functional Types (PFTs). These PFTs play a crucial role in modeling biophysical processes and ecosystem functions within CLM simulations. It also contains soil color data, which is used to calculate soil alebdo. `surfdata_0.9x1.25_16pfts__CMIP6_simyr2000_c170616.nc` is on a 0.8x1.25 degree grid and is used to create the
clm_data artifact, while `surfdata_0.125x0.125_16pfts_simyr2000_c151014.nc` is on a 0.125x0.125 degree
grid and is used to create the clm_data_highres artifact. Both input files contain tge following PFTs:
grid and is used to create the clm_data_0.125 artifact. Both input files contain the following PFTs:

- **Plant Functional Types**:
- `not_vegetated`
Expand Down
4 changes: 2 additions & 2 deletions clm_data/create_artifact.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const OUTPUT_FILES =
["dominant_PFT_map.nc", "vegetation_properties_map.nc", "soil_properties_map.nc"]

output_dir = basename(@__DIR__) * "_artifact"
output_dir_highres = basename(@__DIR__) * "_highres_artifact"
output_dir_highres = basename(@__DIR__) * "_0.125_artifact"
for dir in [output_dir, output_dir_highres]
if isdir(dir)
@warn "$dir already exists. Content will end up in the artifact and may be overwritten."
Expand Down Expand Up @@ -71,6 +71,6 @@ create_artifact_guided(output_dir; artifact_name = basename(@__DIR__))

create_artifact_guided(
output_dir_highres;
artifact_name = basename(@__DIR__) * "_highres",
artifact_name = basename(@__DIR__) * "_0.125",
append = true,
)

0 comments on commit 49850e1

Please sign in to comment.