-
Notifications
You must be signed in to change notification settings - Fork 3
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
mikejohnson51
committed
Nov 16, 2023
1 parent
a7d54a0
commit f821d49
Showing
338 changed files
with
29,239 additions
and
3,179 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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
docs | ||
tests | ||
_pkgdown.yml | ||
vignettes | ||
cran-checks.md | ||
Documentation.pdf | ||
.Rd2pdf27338 | ||
paper | ||
pkgdown | ||
^README.Rmd | ||
.github | ||
^codemeta\.json$ | ||
data-raw | ||
.covrignore | ||
codecov.yml |
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 @@ | ||
R/aoi_draw.R |
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,28 @@ | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: Test coverage | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: covr | ||
|
||
- name: Test coverage | ||
run: covr::codecov() | ||
shell: Rscript {0} |
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
pkgdown | ||
.DS_Store | ||
paper | ||
inst/doc |
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 |
---|---|---|
|
@@ -3,26 +3,42 @@ Type: Package | |
Title: Areas of Interest | ||
Version: 0.3.0 | ||
Authors@R: c(person(given = "Mike", family = "Johnson", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-5288-8350")), | ||
person(given = "Justin", family = "Singh-Mohudpur", role = "rev", email = "[email protected]", comment = c(ORCID = "0000-0002-5233-5799"))) | ||
person(given = "Justin", family = "Singh-Mohudpur", role = "ctb", email = "[email protected]", comment = c(ORCID = "0000-0002-5233-5799"))) | ||
BugReports: https://github.com/mikejohnson51/AOI/issues | ||
Description: A consistent tool kit for forward and reverse geocoding and defining boundaries for spatial analysis. | ||
Depends: | ||
Depends: | ||
R(>= 3.5.0) | ||
Imports: | ||
rvest, | ||
Imports: | ||
datasets, | ||
dplyr, | ||
fipio, | ||
htmlwidgets, | ||
jsonlite, | ||
sf, | ||
leaflet, | ||
leaflet.extras, | ||
rnaturalearth, | ||
tidygeocoder | ||
Suggests: | ||
testthat, | ||
covr, | ||
rvest, | ||
sf, | ||
shiny, | ||
leaflet, | ||
leaflet.extras | ||
terra, | ||
tidygeocoder, | ||
units | ||
Suggests: | ||
climateR, | ||
distill, | ||
FedData, | ||
gdalio, | ||
knitr, | ||
mapview, | ||
nhdplusTools, | ||
osmdata, | ||
raster, | ||
rmarkdown, | ||
testthat, | ||
zonal | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.2.3 | ||
URL: https://github.com/mikejohnson51/AOI/ | ||
VignetteBuilder: knitr |
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,6 +1,29 @@ | ||
AOI 0.2.0 (2021-03-30) | ||
AOI 0.3.0 (2023-09) | ||
========================= | ||
|
||
### NEW FEATURES | ||
|
||
* `aoi_draw()` - Interactivly draw an Area of Interest (AOI) using a `shiny` app. | ||
* Change original OpenStreetMap geocoder to `tidygeocoder` due to new restrictions | ||
* Previously, we allowed the following for place based area requests: | ||
- c(GEO, distance, distance) --> POLYGON | ||
- c(lat, lng, distance, distance) --> POLYGON | ||
|
||
* We now support: | ||
- c(lat, lng) --> POINT | ||
- c(lat, lng, distance) --> POLYGON | ||
|
||
* All of these have been moved from aoi_get to aoi_ext which uses: | ||
- geo | ||
- xy | ||
- wh | ||
|
||
* materialize_grid from zonal was moved here and called discritize | ||
|
||
* Works with terra not raster objects | ||
|
||
AOI 0.2.0 (2021-03) | ||
========================= | ||
|
||
### NEW FEATURES | ||
|
||
* `aoi_draw()` - Interactively draw an Area of Interest (AOI) using a `shiny` app. |
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
Oops, something went wrong.