Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"_comment": "Sart date of the period on which the model will run",
"start_date": "2019-01-01",
"_comment": "End date of the period on which the model will run",
"end_date": "2019-12-31",
"_comment": "Choose between parcel or pixel mode for the run. You need a parcel shapefile for the parcel mode, and a boundary shapefile for the pixel mode.",
"mode": "pixel",
"_comment": "Name of the current run, all output files will be saved under a subdirectory of Saves/ with that name, log file will also have that name",
"run_name": "Aurade_test",
"_comment": "Path to eodag configuration file for sentinel-2 image download",
"path_to_eodag_config_file": "/home/auclairj/.config/eodag/eodag.yml",
"_comment": "Prefered S2 data provider, choices = copernicus (S2), theia (S2), usgs (L8, L9)",
"preferred_provider": "copernicus",
"_comment": "Maximum cloud cover percentage to download data, images with higher cloud cover will not be downloaded",
"cloud_cover_limit": 80,
"_comment": "Minimum image overlap percentage to download data, images with lower overlap will not be downloaded",
"minimum_overlap": 30,
"_comment": "Path to the directory on which the satellite image data will be downloaded",
"download_path": "/mnt/e/DATA",
"_comment": "Output path for output netcdf files (outpus will be stored in a subdirectory carrying the run_name)",
"output_path": "/mnt/e/DATA/OUTPUT",
"_comment": "Output path for netcdf era5 files (Weather)",
"era5_path": "/mnt/e/DATA/WEATHER",
"_comment": "Path to soil netCDF4 dataset",
"soil_path": "/mnt/e/DATA/SOIL/Aurade_test/Soil_interpolated.nc",
"_comment": "Path to Land Cover file (netCDF4)",
"land_cover_path": "/mnt/e/DATA/LAND_COVER/Aurade_test/Aurade_test_new_LC.nc",
"_comment": "Path to the shapefile to run the model on",
"shapefile_path": "/home/auclairj/notebooks/Shapefiles/Aurade_tests/aurade_square.shp",
"_comment": "Path to SAMIR parameter csv file",
"param_csv_file": "/home/auclairj/GIT/modspa_pixel/parameters/csv_files/params_samir.Aurade_test.csv",
"_comment": "Resolution in meters in which to run the processing chain. Choice is either 10 or 20.",
"resolution": 10,
"_comment": "Overwrite NDVI images or not (set to true if you want the code to rewrite NDVI images, takes longer)",
"ndvi_overwrite": true,
"_comment": "Overwrite Weather dataset or not (set to true if you want the code to rewrite weather dataset, takes longer)",
"weather_overwrite": false,
"_comment": "Boolean to choose to automatically open the Dask Dashboard on default brower",
"open_browser": true,
"_comment": "Max number of processor cores to use for multiprocessing calculations",
"max_cpu": 3,
"_comment": "Max amount of RAM memory (in GiB) to use for calculations",
"max_ram": 16,

Jérémy AUCLAIR
committed
"_comment": "Dictionnary containing the name of additionnal variables to write in output and the integer scaling factor. Equal to null if no additionnal output is required.",
"additional_output": null,
"_comment": "List of variables to save as shapefiles for the parcel mode",
"parcel_shapefile_vars": ["ETR"]
}