-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71f9d83
commit 907b046
Showing
25 changed files
with
2,191 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^README\.Rmd$ | ||
^man-roxygen$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
Package: rsi | ||
Title: What the Package Does (One Line, Title Case) | ||
Title: Utilities for Retrieving Satellite Imagery, Calculating Spectral | ||
Indices, and Wrangling the Outputs | ||
Version: 0.0.0.9000 | ||
Authors@R: | ||
person("First", "Last", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "YOUR-ORCID-ID")) | ||
Description: What the package does (one paragraph). | ||
Authors@R: c( | ||
person("Michael", "Mahoney", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-2402-304X")), | ||
person("Permian Global", role = c("cph", "fnd")) | ||
) | ||
Description: Tools for downloading spatial data from spatiotemporal asset | ||
catalogs ('STAC') and computing standard spectral indices from raster data. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
Depends: | ||
R (>= 2.10) | ||
Imports: | ||
glue, | ||
jsonlite, | ||
proceduralnames, | ||
rlang, | ||
|
@@ -23,4 +25,9 @@ Suggests: | |
testthat (>= 3.0.0), | ||
withr | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
URL: https://github.com/Permian-Global-Research/rsi | ||
BugReports: https://github.com/Permian-Global-Research/rsi/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,37 @@ | ||
#' Sentinel-2 band mapping | ||
#' | ||
#' This object is a named list, with names corresponding to Sentinel-2 band | ||
#' names and values corresponding to band names in `spectral_indices`. | ||
#' This object is a named list of character vectors, with names corresponding to | ||
#' Sentinel-2 band names and values corresponding to band names in | ||
#' `spectral_indices`. | ||
#' | ||
#' @template band_mappings | ||
"sentinel2_band_mapping" | ||
|
||
#' Sentinel-1 band mapping | ||
#' | ||
#' This object is a named list, with names corresponding to Sentinel-1 band | ||
#' names and values corresponding to band names in `spectral_indices`. | ||
#' This object is a named list of character vectors, with names corresponding to | ||
#' Sentinel-1 band names and values corresponding to band names in | ||
#' `spectral_indices`. | ||
#' | ||
#' @template band_mappings | ||
"sentinel1_band_mapping" | ||
|
||
#' Landsat band mapping | ||
#' | ||
#' This object is a named list, with names corresponding to Landsat band | ||
#' names and values corresponding to band names in `spectral_indices`. | ||
#' This object is a named list of character vectors, with names corresponding to | ||
#' Landsat band names and values corresponding to band names in | ||
#' `spectral_indices`. | ||
#' | ||
#' @template band_mappings | ||
"landsat_band_mapping" | ||
|
||
#' Landsat band mapping | ||
#' | ||
#' This object is structured slightly differently from other band mapping | ||
#' objects; it is a list of named lists, whose names correspond to DEM | ||
#' collections available within a given STAC catalog. Those named lists are | ||
#' then more standard band mapping objects, containing character vectors with | ||
#' names corresponding to asset names and values equal to `elevation`. | ||
#' | ||
#' @template band_mappings | ||
"dem_band_mapping" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
## usethis namespace: start | ||
## usethis namespace: end | ||
NULL | ||
|
||
utils::globalVariables(c( | ||
"dem_band_mapping", | ||
"landsat_band_mapping", | ||
"sentinel1_band_mapping", | ||
"sentinel2_band_mapping" | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.