Skip to content

Releases: brownag/rgeedim

CRAN Release 0.2.7

18 Jan 16:36
Compare
Choose a tag to compare

rgeedim 0.2.7

  • gd_download() fix bug that prevented overwriting files with overwrite=TRUE when composite=FALSE

  • gd_is_initialized() now accepts additional arguments (...) which are passed to gd_initialize()

  • Unit tests now specify project= argument to gd_initialize()

Full Changelog: 0.2.6...0.2.7

CRAN Release 0.2.6

19 Dec 01:39
Compare
Choose a tag to compare

rgeedim 0.2.6

  • gd_authenticate(): Updates

    • Added force and scopes arguments from earthengine()$Authenticate(). force defaults to TRUE for consistency with prior behavior, and because users often want to use gd_authenticate() to change existing credentials.

    • Updated documentation for other auth_mode e.g. "colab"

  • gd_initialize(): Updates

    • Added arguments credentials, cloud_api_key, url, http_transport and project

    • Deprecated argument opt_url (in favor of url)

  • Argument updates compatible with older versions of Python 'earthengine-api' (< 0.1.382)

Full Changelog: 0.2.5...0.2.6

CRAN Release 0.2.5

17 Aug 15:36
Compare
Choose a tag to compare

rgeedim 0.2.5

  • Update example for gd_enum_names()

  • Fix different value storage in gd_enum_elements() (required for reticulate >= 1.29)

  • Update examples in /misc folder: https://github.com/brownag/rgeedim/tree/main/misc

    • Add new example using gd_export() and the Earth Engine API directly via earthengine()
  • Add gd_region_to_vect() an inverse method for gd_bbox()/gd_region() that creates a 'terra' SpatVector from a GeoJSON-like list

  • Add gd_list_assets() a helper function for listing the assets associated with a particular Earth Engine project.

  • reticulate::configure_environment() is no longer called on load, this is a precaution to avoid unintended impacts from the automatic routine installing on CRAN or similar.

What's Changed

Full Changelog: 0.2.4...0.2.5

CRAN Release 0.2.4

07 Jun 15:56
Compare
Choose a tag to compare

rgeedim 0.2.4

  • Add gd_task_status() and gd_task_uri() for working with Task object produced by gd_export()

  • Fix for gd_composite() and gd_export() errors when region argument is specified as an R spatial object (rather than GeoJSON-like list)

  • Fix bug in gd_enum_elements() and add gd_spectral_distance_metrics()

  • gd_initialize(): Fix use of illogical use of GOOGLE_APPLICATION_CREDENTIALS environment variable contents for Google Cloud service accounts under some conditions

    • EE_SERVICE_ACC_PRIVATE_KEY is used for service accounts, whereas the former is used only for application credentials. GOOGLE_APPLICATION_CREDENTIALS is respected by gd_authenticate() auth_mode "gcloud" and "appdefault".

CRAN Release 0.2.2

29 Mar 23:52
Compare
Choose a tag to compare

rgeedim 0.2.2

  • Added gd_install() for installation of 'numpy', 'earthengine-api', and 'geedim' Python modules via reticulate::py_install() or a system() call

  • gd_bbox() will now calculate a bounding box extent from one or more {terra} SpatRaster, SpatRasterCollection, SpatVector, SpatVectorProxy input (in addition to existing support for SpatExtent)

    • Note that gd_region() allows for more complex boundary input via SpatVector or Well-Known Text (WKT) string
  • Improved coercion interface for non-{terra} objects

    • The following inputs are now converted to {terra} equivalents (or their extents) as needed: WKT string, Spatial* ({sp} package), Raster* & Extent ({raster} package), sf* and bbox ({sf} package). WKT strings and SpatExtent-like objects (Extent, bbox) are assumed to be in the "OGC:CRS84" coordinate reference system.

CRAN Release 0.2.1

14 Feb 14:54
Compare
Choose a tag to compare

rgeedim 0.2.1

  • Updates to .onLoad() to avoid error messages related to Python 3 configuration discovery for {reticulate}

CRAN Release 0.2.0

22 Dec 15:49
b81611b
Compare
Choose a tag to compare

rgeedim 0.2.0

  • Updates to support new image export to asset functionality in geedim 1.6+

    • Added gd_export(), a helper method for exporting images to Google Drive, Google Cloud Storage Bucket, or Earth Engine Project assets.

    • Added gd_export_types() "ExportType" enum helper function

    • Added gd_asset_id(), a helper method for creating asset IDs from a file/asset name and (optional) project name.

    • Added gd_get_asset(), gd_update_asset(), and gd_delete_asset(), helper functions for accessing, updating and deleting assets created in a Google Cloud project (i.e. those created via gd_export(..., type="asset"))

rgeedim 0.1.1

  • Fix for R <4.1 compatibility (replaced lambda \(x) function syntax, replaced apply(..., simplify=FALSE) usage)

CRAN Release 0.1.0

02 Nov 19:34
5259f43
Compare
Choose a tag to compare
  • Initial CRAN Release