Skip to content

Commit

Permalink
Merge pull request #100 from r-spatial/v.1.0.6
Browse files Browse the repository at this point in the history
rgee v.1.0.6
  • Loading branch information
csaybar authored Sep 21, 2020
2 parents c5dd1fd + 0930960 commit 5c58b2c
Show file tree
Hide file tree
Showing 48 changed files with 1,647 additions and 1,546 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ jobs:
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
shell: Rscript {0}

- name: Install Python dependencies
if: runner.os == 'Windows'
run: |
%PYTHON%\\python.exe -m pip install setuptools numpy earthengine-api
- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v1
Expand Down
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Imports:
methods,
reticulate (>= 1.15),
magrittr,
processx,
crayon,
cli
Suggests:
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export(ee_users)
export(ee_utils_create_json)
export(ee_utils_create_manifest_image)
export(ee_utils_create_manifest_table)
export(ee_utils_get_crs)
export(ee_utils_gif_annotate)
export(ee_utils_gif_creator)
export(ee_utils_gif_save)
Expand Down Expand Up @@ -105,6 +106,7 @@ importFrom(methods,is)
importFrom(methods,new)
importFrom(methods,setGeneric)
importFrom(methods,setMethod)
importFrom(processx,run)
importFrom(reticulate,conda_create)
importFrom(reticulate,conda_remove)
importFrom(reticulate,import)
Expand Down
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@ vignette: >
%\VignetteIndexEntry{NEWS}
%\VignetteEncoding{UTF-8}
---
# rgee 1.0.6
- Class method chaining (i.e. `x$size()$getInfo()`) were changed by pipes (i.e. ee_x %>% `ee$FeatureCollection$size() %>% ee$Number()`) in all the `rgee` functions. This solve the problem "OverflowError: python int too large to convert to C long" on Window systems.
- rgee functions has a cleaner method to run system processes, {**processx**}
instead of **base::system**.
- `rgee` I/O functions now check argument before to start to upload/download data.
- Map operators (**+** and **|**) now support EarthEnginemap objects with the
same name.
- Now `Map$addLayers` only display the legend of the first image.
- Fix a bug in `rgee:::ee_image_local` which makes do not work when all bands have not the same crs and crsTransform.
- "getInfo" method in download raster functions was deprecated and will be removed in v.1.0.8.
- Fix a bug in `sf_as_ee` and `ee_as_sf` now both support SR-ORG CRS codes.
- `ee_users` returns a data.frame.
- `ee_monitoring` counts the processing time.
- Fix a bug in `ee_utils_gif_creator` which makes don't work in windows.
- Several changes in `ee_extract`, now is faster and code is cleaner.
- Fix a bug in name creator in `ee_imagecollection_to_local`.
- A new message more detailed when the Python path does not have the earth-engine Python API.
- Earth Engine Python API updated to 0.1.235.
# rgee 1.0.5
- Important changes in the low level API to upload raster and vector with GCS. However, high upload API (`sf_as_ee`, `stars_as_ee`, and `raster_as_ee`) continue working in the same way.
- Add the functions: `ee_utils_create_manifest_image` and `ee_utils_create_manifest_table`
Expand Down
Loading

0 comments on commit 5c58b2c

Please sign in to comment.