Skip to content

Commit 5c58b2c

Browse files
authored
Merge pull request #100 from r-spatial/v.1.0.6
rgee v.1.0.6
2 parents c5dd1fd + 0930960 commit 5c58b2c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1647
-1546
lines changed

.github/workflows/R-CMD-check.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ jobs:
5353
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
5454
shell: Rscript {0}
5555

56-
- name: Install Python dependencies
57-
if: runner.os == 'Windows'
58-
run: |
59-
%PYTHON%\\python.exe -m pip install setuptools numpy earthengine-api
6056
- name: Cache R packages
6157
if: runner.os != 'Windows'
6258
uses: actions/cache@v1

DESCRIPTION

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ Imports:
9494
methods,
9595
reticulate (>= 1.15),
9696
magrittr,
97+
processx,
9798
crayon,
9899
cli
99100
Suggests:

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export(ee_users)
7272
export(ee_utils_create_json)
7373
export(ee_utils_create_manifest_image)
7474
export(ee_utils_create_manifest_table)
75+
export(ee_utils_get_crs)
7576
export(ee_utils_gif_annotate)
7677
export(ee_utils_gif_creator)
7778
export(ee_utils_gif_save)
@@ -105,6 +106,7 @@ importFrom(methods,is)
105106
importFrom(methods,new)
106107
importFrom(methods,setGeneric)
107108
importFrom(methods,setMethod)
109+
importFrom(processx,run)
108110
importFrom(reticulate,conda_create)
109111
importFrom(reticulate,conda_remove)
110112
importFrom(reticulate,import)

NEWS.md

+18
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ vignette: >
1111
%\VignetteIndexEntry{NEWS}
1212
%\VignetteEncoding{UTF-8}
1313
---
14+
# rgee 1.0.6
15+
- 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.
16+
- rgee functions has a cleaner method to run system processes, {**processx**}
17+
instead of **base::system**.
18+
- `rgee` I/O functions now check argument before to start to upload/download data.
19+
- Map operators (**+** and **|**) now support EarthEnginemap objects with the
20+
same name.
21+
- Now `Map$addLayers` only display the legend of the first image.
22+
- Fix a bug in `rgee:::ee_image_local` which makes do not work when all bands have not the same crs and crsTransform.
23+
- "getInfo" method in download raster functions was deprecated and will be removed in v.1.0.8.
24+
- Fix a bug in `sf_as_ee` and `ee_as_sf` now both support SR-ORG CRS codes.
25+
- `ee_users` returns a data.frame.
26+
- `ee_monitoring` counts the processing time.
27+
- Fix a bug in `ee_utils_gif_creator` which makes don't work in windows.
28+
- Several changes in `ee_extract`, now is faster and code is cleaner.
29+
- Fix a bug in name creator in `ee_imagecollection_to_local`.
30+
- A new message more detailed when the Python path does not have the earth-engine Python API.
31+
- Earth Engine Python API updated to 0.1.235.
1432
# rgee 1.0.5
1533
- 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.
1634
- Add the functions: `ee_utils_create_manifest_image` and `ee_utils_create_manifest_table`

0 commit comments

Comments
 (0)