- Copying EOPatches no longer forces loading of features if the EOPatch was loaded with
lazy_loading=True
SentinelHubInputTask
now requests bands with correct units and should now work with more data collections. The parameterbands_dtype
is now by default set toNone
, which uses the default units of each band. Note: due to changes the task no longer normalizes the output whenbands_dtype=np.uint16
is used.- Minor fixes and improvements
EOWorkflow
now automatically makes a shallow copy of eachEOPatch
before passing it to anyEOTask
in the workflow.- Streamlined naming conventions of EOTasks - every name now ends with
Task
. Old names have been deprecated. - Improved functionality of merging EOPatches, particularly of merging time-dependent features.
- Removed support for Python 3.6 and added official support for Python 3.9.
- Implemented
EOPatch.copy
andEOPatch.__delitem__
methods. - Added
eolearn.io.MeteoblueRasterTask
andeolearn.io.MeteoblueVectorTask
for obtaining weather data. Joint effort with Meteoblue. VectorToRasterTask
now supports rasterization of time-dependant vector features. Contributed by @asylve.- Fixes in
SentinelHubInputTask
. BothSentinelHubInputTask
andSentinelHubEvalscriptTask
now return EOPatches with timestamps that don't have timezone information anymore. - Changed
rasterio
dependency torasterio>=1.2.7
- All but
eolearn.core
tests ported topytest
framework. - Switched from Travis CI to GitHub actions.
- Minor fixes and improvements.
- Minor fixes and improvements:
SaveTask
andLoadTask
don't automatically store a filesystem object anymore,- fix in
ImportFromTiff
about file extensions, contributed by @rpitonak, - fix in
SentinelHubInputTask
about data collection bands handling, - fix in
GeoDBVectorImportTask
, NormalizedDifferenceIndexTask
doesn't show division warnings anymore,- improvement in
PointSamplingTask
- improvements in LULC documentation notebook.
- Added new tasks
VectorImportTask
,GeopediaVectorImportTask
, andGeoDBVectorImportTask
toeo-learn-io
. - Code improvements in LULC classification documentation notebook.
- Minor improvements and fixes.
- Changes in
eo-learn-io
tasks that interact with Sentinel Hub services:- Added
SentinelHubEvalscriptTask
that downloads data given a user-defined evalscript. - Removed all tasks that interact with Sentinel Hub OGC services. They are fully replaced by
SentinelHubInputTask
andSentinelHubEvalscriptTask
which use Sentinel Hub Process API. - Renamed
AddSen2CorClassificationFeature
toSentinelHubSen2corTask
. Now it uses Process API instead of OGC.
- Added
- Changes in Sentinel-2 cloud-masking tasks:
- Renamed
AddMultiCloudMaskTask
toCloudMaskTask
. - Removed
AddCloudMaskTask
as it is superseded byCloudMaskTask
. - Fixed problems with incompatibility with the latest
scikit-learn
version.
- Renamed
- Updated all notebooks in
eo-learn
repository. - Minor fixes and improvements:
- better handling of
KeyboardInterrupt
inEOExecutor
, - fixed plotting of raster features with binary dtype,
- documentation fixes.
- better handling of
- Added example use-case about creating a timelapse with batch processing.
- Added example use-case about crop type classification. Contributed by @Gnilliw
- Updated code to be compatible with the latest releases
sentinelhub-py
3.2.0
ands2cloudless
1.5.0
. - Fixed an issue in
eolearn.coregistration.RegistrationTask
. - Fixed an issue in
eolearn.io.ExportToTiff
with paths on Windows. - Various minor improvements.
- Switched from "data source" to "data collection" terminology according to changes in
sentinelhub-py
and Sentinel Hub services. - Improvements in
SentinelHubInputTask
to better support any type of data collection. Using newDataCollection
class fromsentinelhub-py
. - Extended
ExportToTiff
andImportFromTiff
tasks to support writing and reading from AWS S3 buckets. Implemented in cooperation with @wouellette. - Implemented
EOPatch.merge
method andMergeEOPatchesTask
task for merging the content of any number of EOPatches. Implemented in cooperation with @wouellette. - Deprecated
EOPatch.concatenate
in favour ofEOPatch.merge
. - Added
eolearn.features.DoublyLogisticApproximationTask
, contributed by @bsircelj. - Optional parameter
config
forSaveTask
andLoadTask
to enable defining custom AWS credentials. - Fixed a bug in
eolearn.features.ValueFilloutTask
. - Started releasing
eo-learn
(sub)packages also as wheels. - Minor improvements and fixes.
- Support for
geopandas
version0.8.0
- Added a notebook with an end-to-end example on how to transform a ML-model into an evalscript and run it with Sentinel Hub service
- Added
eolearn.features.ClusteringTask
, contributed by @bsircelj - An option to define a custom log filter for
EOExecutor
- Data mask obtained by
SentinelHubInputTask
has now boolean type instead of uint8 - Updates of some example notebooks
- A few minor fixes
- Added eo-learn dockerfiles and deployed official eo-learn docker images to Docker Hub
- Added
compress
parameter toExportToTiff
, contributed by @atedstone - Minor fixes
- Updated example notebooks - replaced OGC service tasks with Processing API service tasks
- Deprecated tasks that download data from Sentinel Hub OGC service
- Minor fixes in
SentinelHubInputTask
andAddCloudMaskTask
- Updates of
SentinelHubInputTask
:- Support for new s2cloudless precomputed cloud mask (more info)
- Support for
config
parameter
- Updated
SI_LULC_pipeline
notebook.
- Added support for
geopandas
version0.7.0
. - Fixed a bug in
eolearn.core.eodata_io.save_eopatch
function. - Improvement in
eolearn.mask.MaskFeature
task - it now works also works with time independent feature types. - A minor improvement in
eolearn.io.SentinelHubInputTask
task.
- Support additional data in the Processing API input task (such as sunAzimuthAngles, sunZenithAngles, viewAzimuthMean, viewZenithMean)
- Compatibility with the
sentinelhub-py
3.0 - Removed support for python 3.5
- Multiprocessing Log filtering
eolearn.io.SentinelHubInputTask
: evalscript version was not passed to the sentinel-hub service.eolearn.core.EOWorkflow
: fixed generating task dependencies.
- Processing API docs generation.
- Introduced CHANGELOG.md.