### Persefone - a socio-economic-ecological model of European agricultural landscapes. ### ### This is the default configuration file for Persefone, containing all model parameters. ### The syntax is described here: https://toml.io/en/ ### ### DO NOT MODIFY THIS FILE FOR SIMULATION EXPERIMENTS! ### Instead, copy it to another directory and modify the copy. [core] configfile = "src/parameters.toml" # location of the configuration file outdir = "results" # location and name of the output folder overwrite = "ask" # overwrite the output directory? (true/false/"ask") loglevel = "debug" # verbosity level: "debug", "info", "warn" processors = 2 # number of processors to use on parallel runs seed = 2 # seed value for the RNG (0 -> random value) # dates to start and end the simulation startdate = 2022-01-01 #enddate = 2022-03-31 enddate = 2022-12-31 [world] landcovermap = "data/landcover_jena.tif" # location of the landcover map farmfieldsmap = "data/fields_jena.tif" # location of the field geometry map [farm] farmmodel = "FieldManager" # which version of the farm model to use (not yet implemented) [nature] targetspecies = ["Wolpertinger", "Wyvern"] # list of target species to simulate popoutfreq = "daily" # output frequency population-level data, daily/monthly/yearly/end/never indoutfreq = "end" # output frequency individual-level data, daily/monthly/yearly/end/never insectmodel = ["season", "habitat", "pesticides"] # which factors affect insect growth ("weather" is not yet implemented) [crop] cropmodel = "linear" # crop growth model to use, "linear" or "aquacrop" (not yet implemented)