Project file structure

Here is an outlay of the current file strucutre:

├── __init__.py
├── main_prepare_inputs.py
├── parameters
│   ├── __init__.py
│   ├── csv_files
│   │   ├── params_samir_Sigpac_test.csv
│   │   ├── params_samir_test.csv
│   │   ├── params_samir_Aurade_test.csv
│   │   ├── params_samir_test_dev.csv
│   │   └── params_samir_min_max.csv
│   ├── parameter_estimation.ipynb
│   └── params_samir_class.py
├── DEV_inputs_test
│   ├── soil_100.nc
│   ├── ndvi_100.nc
│   ├── soil_1000.nc
│   ├── ndvi_10.nc
│   ├── xls_NDVI_10.nc
│   ├── xls_NDVI_100.nc
│   ├── soil_10.nc
│   ├── ndvi_1000.nc
│   ├── land_cover_100.nc
│   ├── xls_weather_10.nc
│   ├── pix_outputs_10.nc
│   ├── land_cover_10.nc
│   ├── xls_outputs_100.nc
│   ├── xls_outputs_10.nc
│   ├── xls_weather_1000.nc
│   ├── xls_weather_100.nc
│   ├── land_cover_1000.nc
│   └── xls_NDVI_1000.nc
├── test_samir_dask.py
├── main_run_samir.py
├── tests.py
├── modspa_pixel_env.yml
├── source
│   ├── code_toolbox.py
│   └── modspa_samir.py
├── SAMIR_xls
│   ├── SAMIRxls_Reference_ReadAndPlot.py
│   ├── SAMIRv5_juin2015.xlsx
│   ├── SAMIRxls_Reference.FR-Lam2019.xls
│   └── SAMIRpixel_Reference_Simonneaux2012.xls
├── config
│   ├── config_modspa_parcel.json
│   ├── config.py
│   ├── select_config_modspa.py
│   ├── config_modspa_pixel.json
│   └── config_modspa.json
├── dev_samir_xarray.ipynb
├── preprocessing
│   ├── download_S2.py
│   ├── csv_files
│   │   └── class_conversion.csv
│   ├── extract_ndvi.py
│   ├── parcel_to_pixel.py
│   ├── lib_era5_land_pixel.py
│   ├── calculate_ndvi.py
│   ├── custom_inputs.ipynb
│   ├── input_toolbox.py
│   └── download_ERA5_weather.py
├── test_samir.py
├── README.md
├── postprocessing
│   ├── plot_parcel_GIFs.py
│   ├── output_toolbox.py
│   ├── pixel_to_parcel.py
│   ├── plot_pixel_GIFs.py
│   └── explore_pixel_outputs.ipynb
└── docs
    ├── source
    │   ├── conf.py
    │   ├── file_structure.rst
    │   ├── .templates
    │   ├── filetree.rst
    │   ├── samir
    │   │   ├── data_and_ram_management.rst
    │   │   ├── samir_functions.rst
    │   │   └── run_samir.rst
    │   ├── preprocessing
    │   │   ├── samir_params.rst
    │   │   ├── weather_cube.rst
    │   │   ├── land_cover.rst
    │   │   ├── ndvi_cube.rst
    │   │   ├── input_preparation.rst
    │   │   └── soil_data.rst
    │   ├── index.rst
    │   ├── .static
    │   │   └── custom.css
    │   ├── mode
    │   │   ├── pixel.rst
    │   │   ├── mode.rst
    │   │   └── parcel.rst
    │   └── setup
    │       ├── json_config_file.rst
    │       ├── conda_env.rst
    │       └── setup.rst
    ├── build
    └── Makefile