Skip to content
Snippets Groups Projects
Commit 5bd4d9c9 authored by Guillaume Eynard-Bontemps's avatar Guillaume Eynard-Bontemps
Browse files

update doc and other part for 1.12 release

parent 8675dc4d
No related branches found
No related tags found
2 merge requests!139Merge develop 1.12 into master,!136update doc and other part for 1.12 release
# Change Log
All notable changes to Let It Snow (LIS) will be documented in this file.
Since 2020-05, and 1.7 version, all notable changes are directly recorder inside gitlab: https://gitlab.orfeo-toolbox.org/remote_modules/let-it-snow/-/releases.
Previously, all notable changes to Let It Snow (LIS) were documented in this file.
## [1.6] - 2020-04
......
......@@ -106,7 +106,7 @@ version.
- Check that the [milestone](https://gitlab.orfeo-toolbox.org/remote_modules/let-it-snow/-/milestones) corresponding to the version to be realeased is up to date (with all issues fixed by this realease)
- Check that all issues and corresponding merge requests have been merged to develop.
- If necessary, create a merge request to update python/version.py file with the new version.
- Create a merge request to update python/setup.py.in file with the new version.
- If necessary, push a new Data-LIS archive on Zenodo (https://zenodo.org/records/8214966), don't forget to update the main Readme to point to the new link.
- Create a tag corresponding to the version you want to release. You can do this through gitlab or using git commands.
- Launch validation tests on this tag.
......
......@@ -230,8 +230,8 @@ LIS processing chain uses CMake (http://www.cmake.org) for building from source.
Following a summary of the required dependencies:
* GDAL >=3.0
* OTB >= 7.4
* GDAL >=3.4
* OTB >= 8.1
* Python interpreter >= 3.8.4
* Python libs >= 3.8.4
* Python packages:
......@@ -239,7 +239,7 @@ Following a summary of the required dependencies:
* lxml
* matplotlib
* rasterio
* Rastertools (https://gitlab.cnes.fr/eolab/processing/rastertools) branch master (since LIS-1.11, if not installed, shaded snow will not be fully detected)
* Rastertools (https://github.com/CNES/rastertools) branch master (since LIS-1.11, if not installed, shaded snow will not be fully detected)
Python package dependencies:
* pyscaffold
* geopandas
......
{
"general":{
"multi":10,
"mode": "S2",
"no_data":-10000,
"ram":2024,
"nb_threads":2,
"preprocessing":true
},
"vector":{
"generate_vector":true,
"generate_intermediate_vectors":false,
"use_gdal_trace_outline": true,
"gdal_trace_outline_dp_toler": 0,
"gdal_trace_outline_min_area":0
},
"cloud":{
"all_cloud_mask":1,
"high_cloud_mask":128,
"shadow_in_mask":32,
"shadow_out_mask":64,
"red_back_to_cloud":100,
"resize_factor":12,
"red_dark_cloud":300,
"strict_cloud_mask":false,
"rm_snow_inside_cloud":false,
"rm_snow_inside_cloud_dilation_radius": 5,
"rm_snow_inside_cloud_threshold": 0.85,
"rm_snow_inside_cloud_min_area": 250000
},
"snow":{
"dz":100,
"ndsi_pass1":0.4,
"red_pass1":200,
"ndsi_pass2":0.15,
"red_pass2":40,
"fsnow_lim":0.1,
"fsnow_total_lim":0.001,
"fclear_lim": 0.1
},
"fsc":{
"fscOg_Eq":"fscToc/(1-tcd)",
"fscToc_Eq": "0.5*tanh(2.65*ndsi-1.42)+0.5"
},
"shaded_snow": {
"shaded_snow_hillshade": true,
"hillshade_lim": 0.2,
"shaded_snow_pass": 160,
"shaded_snow_casted": true,
"rastertools_window_size": 2048,
"rastertools_radius": 512
},
"water_mask":{
"water_mask_raster_values":[1]
}
}
......@@ -19,7 +19,7 @@
#
from distutils.core import setup
VERSION = '1.11.0'
VERSION = '1.12.0'
setup(name='s2snow',
version=VERSION,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment