diff --git a/clm_data/OutputArtifacts.toml b/clm_data/OutputArtifacts.toml index 643899e..f922b3e 100644 --- a/clm_data/OutputArtifacts.toml +++ b/clm_data/OutputArtifacts.toml @@ -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" diff --git a/clm_data/README.md b/clm_data/README.md index 55ccb55..a84ca07 100644 --- a/clm_data/README.md +++ b/clm_data/README.md @@ -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` diff --git a/clm_data/create_artifact.jl b/clm_data/create_artifact.jl index 51b5633..d01bc75 100644 --- a/clm_data/create_artifact.jl +++ b/clm_data/create_artifact.jl @@ -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." @@ -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, )