Skip to content

Commit

Permalink
version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainv committed Jul 8, 2024
1 parent 3023585 commit 9f63724
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
Changelog
*********

geefcc 0.1.4
============

* Replace ``gdal.TermProgress`` with ``gdal.TermProgress_nocb``.
* Changes: https://github.com/ghislainv/geefcc/compare/v0.1.3...v0.1.4

geefcc 0.1.3
============

* Add an option to compute the tiles sequentially
* Change multiprocessing to multiprocess
* Adding ``crop_to_aoi`` argument to function ``get_fcc()``
* Several changes: https://github.com/ghislainv/geefcc/compare/v0.1.2...main
* Changes: https://github.com/ghislainv/geefcc/compare/v0.1.2...v0.1.3

geefcc 0.1.2
============

* Changing import statements.
* Changes: https://github.com/ghislainv/geefcc/compare/v0.1.1...v0.1.2

geefcc 0.1.1
============
Expand All @@ -24,3 +31,4 @@ geefcc 0.1
==========

* First release of the package.

2 changes: 1 addition & 1 deletion geefcc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# https://peps.python.org/pep-0008/#module-level-dunder-names
__author__ = "Ghislain Vieilledent and Thomas Arsouze"
__email__ = "ghislain.vieilledent@cirad.fr, thomas.arsouze@cirad.fr"
__version__ = "0.1.3"
__version__ = "0.1.4"

# GDAL exceptions
from osgeo import gdal
Expand Down
2 changes: 1 addition & 1 deletion geefcc/geotiff_from_tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def geotiff_from_tiles(crop_to_aoi, extent, output_file):
tif_forest_files = glob(opj(out_dir_tiles, "forest_*.tif"))
# Callback
verbose = False
cback = gdal.TermProgress if verbose else 0
cback = gdal.TermProgress_nocb if verbose else 0
forest_vrt = gdal.BuildVRT(
opj(out_dir, "forest.vrt"),
tif_forest_files,
Expand Down

0 comments on commit 9f63724

Please sign in to comment.