Skip to content

Releases: gee-community/geetools

v1.11.0

14 Jan 12:51
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.10.0...v1.11.0

v1.10.0

11 Dec 07:36
ef54d9b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.9.1...v1.10.0

v1.9.1

02 Dec 06:22
609bd8d
Compare
Choose a tag to compare

What's Changed

  • docs: initialize earthengine in jupyter-sphinx cells by @12rambau in #382
  • docs: set all the intersphinx lib by @12rambau in #385
  • docs: execute the jupyter-sphinx cells by @12rambau in #383
  • fix: expose all the reduction parameters in the plotting methods by @12rambau in #380
  • docs: only keep the last atom in API documetnation by @12rambau in #387
  • doc: add emmanuel-ferdman to authors by @12rambau in #389
  • fix: copy the metadata of the ImageCollection when copying an asset by @12rambau in #388
  • docs: remove left side bar in API reference by @12rambau in #391

Full Changelog: v1.9.0...v1.9.1

v1.9.0

22 Nov 22:27
da87ffa
Compare
Choose a tag to compare

reduceRegion for image collections

In this release, we introduced a much wanted feature to our collection of tools. Using this version you'll be able to perform feature enrichment and perform reduceRegion operation directly on top of you image collections. We tried to cover as many traps you could meet in the way and provide something as simple as possible to compute the same reduceRegion operation you would do on an image but across the stack.

import ee, geetools 

## Import the example feature collection and drop the data property.
ecoregions = ee.FeatureCollection("projects/google/charts_feature_example").select(["label", "value", "warm"])


## Load MODIS vegetation indices data and subset of 4 images.
vegIndices = ee.ImageCollection("MODIS/061/MOD13A1").filter(ee.Filter.date("2010-01-01", "2010-02-28")).select(["NDVI", "EVI"])

vegIndices.geetools.reduceRegion(
    reducer = ee.Reducer.mean(),
    idProperty = "system:time_start",
    idPropertyType = ee.Date,
    geometry = ecoregions.filter(ee.Filter.eq("label", "Forest")).geometry(),
    scale = 500
).getInfo()
{
  "2010-01-01T00-00-00": {"EVI": 1906.640549923878, "NDVI": 3271.6286118599337},
  "2010-01-17T00-00-00": {"EVI": 3285.1954560181716, "NDVI": 7332.941022787698},
  "2010-02-02T00-00-00": {"EVI": 2973.249133365389, "NDVI": 7853.778045715129},
  "2010-02-18T00-00-00": {"EVI": 3278.830343157147, "NDVI": 7959.46303125494}
}

More information and example in the documentation.

What's Changed

Full Changelog: v1.8.0...v1.9.0

v1.8.0

25 Oct 09:08
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.7.0...v1.8.0

v1.7.0

18 Oct 08:55
e577f38
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6.0...v1.7.0

v1.6.0

09 Oct 19:51
e8c4441
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.1...v1.6.0

v1.5.1

05 Oct 11:35
820827c
Compare
Choose a tag to compare

What's Changed

  • refactor: drop all method that are deprecated since v1.0.0 by @12rambau in #296
  • refactor: deprecate all the equal interval related methods by @12rambau in #298
  • refactor: deprecate fillWithLast by @12rambau in #299
  • refactor: deprecate the last method from imagecollection composite and algorithm by @12rambau in #300
  • docs: document installation process through conda by @12rambau in #306

Full Changelog: v1.5.0...v1.5.1

v1.5.0

03 Oct 07:49
1564776
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.4.0...v1.5.0

v1.4.0

30 Jun 19:53
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...v1.4.0