Skip to content

Commit

Permalink
Merge pull request #145 from NIEHS/isong-1.2.0
Browse files Browse the repository at this point in the history
1.2.0
  • Loading branch information
sigmafelix authored Nov 19, 2024
2 parents 6100c9f + dc5768d commit 3d7da8d
Show file tree
Hide file tree
Showing 13 changed files with 231 additions and 335 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: amadeus
Title: Accessing and Analyzing Large-Scale Environmental Data
Version: 1.1.7
Version: 1.2.0
Authors@R: c(
person(given = "Mitchell", family = "Manware", role = c("aut", "ctb"), comment = c(ORCID = "0009-0003-6440-6106")),
person(given = "Insang", family = "Song", role = c("aut", "ctb"), comment = c(ORCID = "0000-0001-8732-3256")),
Expand All @@ -13,7 +13,7 @@ Authors@R: c(
Maintainer: Kyle Messier <[email protected]>
Description: Functions are designed to facilitate access to and utility with large scale, publicly available environmental data in R. The package contains functions for downloading raw data files from web URLs (download_data()), processing the raw data files into clean spatial objects (process_covariates()), and extracting values from the spatial data objects at point and polygon locations (calculate_covariates()). These functions call a series of source-specific functions which are tailored to each data sources/datasets particular URL structure, data format, and spatial/temporal resolution. The functions are tested, versioned, and open source and open access. For sum_edc() method details, see Messier, Akita, and Serre (2012) <doi:10.1021/es203152a>.
Depends: R (>= 4.1.0)
Imports: dplyr, sf, sftime, stats, terra, methods, data.table, httr, rvest, exactextractr, utils, stringi, testthat (>= 3.0.0), parallelly, stars, future, future.apply, tidyr, rlang, nhdplusTools, archive, collapse, Rdpack
Imports: dplyr, sf, sftime, stats, terra, methods, data.table, httr, rvest, exactextractr, utils, stringi, testthat (>= 3.0.0), parallelly, stars, tidyr, rlang, nhdplusTools, archive, collapse, Rdpack
Suggests:
covr,
withr,
Expand Down
8 changes: 1 addition & 7 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export(calculate_hms)
export(calculate_koppen_geiger)
export(calculate_lagged)
export(calculate_merra2)
export(calculate_modis)
export(calculate_modis_daily)
export(calculate_modis_par)
export(calculate_narr)
export(calculate_nei)
export(calculate_nlcd)
Expand Down Expand Up @@ -148,12 +148,6 @@ importFrom(dplyr,select)
importFrom(dplyr,summarize)
importFrom(dplyr,ungroup)
importFrom(exactextractr,exact_extract)
importFrom(future,cluster)
importFrom(future,multicore)
importFrom(future,plan)
importFrom(future,sequential)
importFrom(future.apply,future_Map)
importFrom(future.apply,future_lapply)
importFrom(httr,GET)
importFrom(httr,HEAD)
importFrom(methods,is)
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1.2
- `future` and `future.apply` dependencies were removed
- `nthreads` argument is removed from `calculate_modis_par()` and `calculate_nlcd()`
- `calculate_modis_par()` is renamed to `calculate_modis()`

# 1.1
- `calc_*()` functions are renamed to `calculate_*()` per naming convention of other function family in the package

# 1.0
- First CRAN release (v.1.0.0)
Loading

0 comments on commit 3d7da8d

Please sign in to comment.