Pipelines to run Emerald model (remastered CliMA Land)
pkg > add https://github.com/silicormosia/emerald-pipelines.git
At the moment we write this tutorial, we have only uploaded the weather drivers for the year 2019 for testing purpose. For details about the available datasets, please checkout the Zenodo archive at
using EmeraldPipelines
EmeraldPipelines.run_emerald_land!(2019);The EmeraldPipelines.run_emerald_land! function takes two parameters:
year::IntAn integer for yearsettings::OrderedDict{String,Any}A dictionary that stores the settings
Therefore, if you want to run the model using 200 cores in parallel, you may do this way:
using Emerald;
using EmeraldPipelines;
settings = Emerald.Land.land_model_settings();
settings["SIMU_THREADS"] = 200;
EmeraldPipelines.run_emerald_land!(2019, settings);