Skip to content

Commit

Permalink
Merge pull request #81 from brazil-data-cube/b-0.9
Browse files Browse the repository at this point in the history
Pre-release v0.9.1-5
  • Loading branch information
OldLipe authored Nov 4, 2021
2 parents 93763fd + 50e5164 commit f36b320
Show file tree
Hide file tree
Showing 66 changed files with 5,786 additions and 1,760 deletions.
10 changes: 0 additions & 10 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,3 @@ steps:
when:
event:
- push

- name: discord-notify
image: brazildatacube/bdc-drone-discord
settings:
webhook:
from_secret: discord_webhook
when:
status:
- failure
- success
13 changes: 8 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
Package: rstac
Title: Client Library for SpatioTemporal Asset Catalog
Version: 0.9.1-4
Version: 0.9.1-5
Authors@R:
c(person("Brazil Data Cube Team",
email = "brazildatacube@inpe.br",
role = c("cre", "aut")),
person(given = "National Institute for Space Research (INPE)",
role = c("cph")))
Description: Provides functions to access, search and download spacetime earth
observation data via SpatioTemporal Asset Catalog (STAC). This package
observation data via SpatioTemporal Asset Catalog (STAC). This package
supports the version 1.0.0 of the STAC specification
(<http://stacspec.org>).
(<https://github.com/radiantearth/stac-spec>).
For further details see Simoes et al. (2021) <doi:10.1109/IGARSS47720.2021.9553518>.
License: MIT + file LICENSE
URL: https://github.com/brazil-data-cube/rstac
BugReports: https://github.com/brazil-data-cube/rstac/issues
Encoding: UTF-8
RoxygenNote: 7.1.1
RoxygenNote: 7.1.2
Depends:
R (>= 3.5)
Imports:
httr,
crayon,
utils,
magrittr,
jsonlite
jsonlite,
lifecycle
Suggests:
covr,
testthat,
vcr
Roxygen: list(markdown = TRUE)
33 changes: 32 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ S3method(after_response,item_id)
S3method(after_response,items)
S3method(after_response,search)
S3method(after_response,stac)
S3method(assets_filter,STACItem)
S3method(assets_filter,STACItemCollection)
S3method(assets_select,STACItem)
S3method(assets_select,STACItemCollection)
S3method(before_request,RSTACQuery)
S3method(before_request,collection_id)
S3method(before_request,collections)
Expand All @@ -26,6 +30,24 @@ S3method(endpoint,item_id)
S3method(endpoint,items)
S3method(endpoint,search)
S3method(endpoint,stac)
S3method(items_assets,STACItem)
S3method(items_assets,STACItemCollection)
S3method(items_bbox,STACItem)
S3method(items_bbox,STACItemCollection)
S3method(items_datetime,STACItem)
S3method(items_datetime,STACItemCollection)
S3method(items_fetch,STACItem)
S3method(items_fetch,STACItemCollection)
S3method(items_fields,STACItem)
S3method(items_fields,STACItemCollection)
S3method(items_length,STACItem)
S3method(items_length,STACItemCollection)
S3method(items_matched,STACItem)
S3method(items_matched,STACItemCollection)
S3method(items_next,STACItem)
S3method(items_next,STACItemCollection)
S3method(items_sign,STACItem)
S3method(items_sign,STACItemCollection)
S3method(parse_params,ext_query)
S3method(parse_params,search)
S3method(print,RSTACQuery)
Expand All @@ -44,7 +66,9 @@ export(RSTACDocument)
export(RSTACQuery)
export(after_response)
export(assets_download)
export(assets_filter)
export(assets_list)
export(assets_select)
export(before_request)
export(check_query_verb)
export(check_subclass)
Expand All @@ -55,18 +79,24 @@ export(endpoint)
export(ext_query)
export(get_request)
export(items)
export(items_assets)
export(items_bands)
export(items_bbox)
export(items_datetime)
export(items_fetch)
export(items_fields)
export(items_filter)
export(items_group)
export(items_length)
export(items_matched)
export(items_next)
export(items_reap)
export(items_sign)
export(omit_query_params)
export(parse_params)
export(post_request)
export(sign_bdc)
export(sign_planetary_computer)
export(stac)
export(stac_search)
export(stac_version)
Expand All @@ -79,7 +109,8 @@ importFrom(httr,content)
importFrom(httr,http_type)
importFrom(httr,status_code)
importFrom(httr,write_disk)
importFrom(jsonlite,validate)
importFrom(jsonlite,fromJSON)
importFrom(lifecycle,deprecated)
importFrom(magrittr,"%>%")
importFrom(utils,URLdecode)
importFrom(utils,modifyList)
31 changes: 31 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# rstac (development version)

# rstac 0.9.1-5 (Released 2021-11-01)

* Add support to `lifecycle` package
* Documentation has been changed from `Rd` to `markdown`
* New functions that support assets and items manipulation have been added: `assets_select`, `assets_filter`, and `items_filter`
* The documentation was reviewed
* New examples and tests were added
* `rstac` now supports signatures in `href` using the `items_sign` function
* Function `items_bands()` was changed to `items_assets()`
* Parameters `assets_name` and `assets_names` are now called `asset_names`
* Add the `rstac` reference paper in README
* Add feature name on print items objects
* Create `items_next` function to do a single pagination request
* Adjust download helpers to access data from Microsoft's Planetary Computer
* Update news.md of v0.9.0-1

# rstac 0.9.1-4 (Released 2021-09-14)

* Fix typos
Expand All @@ -22,6 +38,21 @@
* Change version 0.9.0 to 0.9.0-2 in DESCRIPTION
* Fix assets without extension in assets_download function

# rstac 0.9.0-1 (Released 2020-10-20)

* Update `ext_query` function
* Add `magrittr` package in depends
* Add function items_bands
* Introduces `items_bbox` and `items_datetime` functions
* Update print.R file
* Fix items_fetch
* Update `assets_download.R` and others functions
* Add function 'get_assets_name'
* Add overwrite and items_max parameter; solve issue #10
* Fix bug in stac_matched and update documentation
* Change function name `.verify_datime()'` to `parse_datetime()`
* Rename function `extension_query` to `ext_query`

# rstac 0.9.0 (Released 2020-09-18)

* Fix issue from CRAN.
Expand Down
Loading

0 comments on commit f36b320

Please sign in to comment.