Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.6 #141

Merged
merged 24 commits into from
Nov 13, 2024
Merged

1.1.6 #141

Show file tree
Hide file tree
Changes from 23 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
Package: amadeus
Title: Accessing and Analyzing Large-Scale Environmental Data
Version: 1.1.1
Version: 1.1.6
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")),
person(given = "Eva", family = "Marques", role = c("aut", "ctb"), comment = c(ORCID = "0000-0001-9817-6546")),
person(given = "Mariana", family = "Alifa Kassien", role = c("aut", "ctb"), comment = c(ORCID = "0000-0003-2295-406X")),
person(given = "Elizabeth", family = "Scholl", role = c("ctb"), comment = c(ORCID = "0000-0003-2727-1954")),
person(given = "Kyle", family = "Messier", role = c("aut", "cre"), email = "kyle.messier@nih.gov", comment = c(ORCID = "0000-0001-9508-9623")),
person("Spatiotemporal Exposures and Toxicology Group", role = c("cph"))
)
Maintainer: Kyle Messier <kyle.messier@nih.gov>
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 (calc_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 calc_sedc() method details, see Messier, Akita, and Serre (2012) <doi:10.1021/es203152a>.
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
Suggests:
Expand Down
42 changes: 22 additions & 20 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,34 @@
export(apply_extent)
export(as_mysftime)
export(calc_check_time)
export(calc_covariates)
export(calc_ecoregion)
export(calc_geos)
export(calc_gmted)
export(calc_gridmet)
export(calc_hms)
export(calc_koppen_geiger)
export(calc_lagged)
export(calc_merra2)
export(calc_message)
export(calc_modis_daily)
export(calc_modis_par)
export(calc_narr)
export(calc_nei)
export(calc_nlcd)
export(calc_prepare_locs)
export(calc_return_locs)
export(calc_sedac_groads)
export(calc_sedac_population)
export(calc_sedc)
export(calc_setcolumns)
export(calc_temporal_dummies)
export(calc_terraclimate)
export(calc_time)
export(calc_tri)
export(calc_worker)
export(calculate_covariates)
export(calculate_ecoregion)
export(calculate_geos)
export(calculate_gmted)
export(calculate_gridmet)
export(calculate_hms)
export(calculate_koppen_geiger)
export(calculate_lagged)
export(calculate_merra2)
export(calculate_modis_daily)
export(calculate_modis_par)
export(calculate_narr)
export(calculate_nei)
export(calculate_nlcd)
export(calculate_sedac_groads)
export(calculate_sedac_population)
export(calculate_temporal_dummies)
export(calculate_terraclimate)
export(calculate_tri)
export(check_destfile)
export(check_for_null_parameters)
export(check_geom)
export(check_mysf)
export(check_mysftime)
export(check_url_status)
Expand Down Expand Up @@ -117,6 +118,7 @@ export(sftime_as_spatvector)
export(spatraster_as_sftime)
export(spatrds_as_sftime)
export(spatvector_as_sftime)
export(sum_edc)
export(test_download_functions)
import(rvest)
import(sf)
Expand Down
Loading
Loading