-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from Jellest/rAHNextract_098_dev
releaase of rAHNextract v. 0.98
- Loading branch information
Showing
143 changed files
with
3,723 additions
and
10,528 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,19 +1,23 @@ | ||
^rAHNextract\.Rproj$ | ||
^\.Rproj\.user$ | ||
^data-raw$ | ||
^LICENSE\.md$ | ||
^tests$ | ||
^README\.Rmd$ | ||
^ahn_hoogtes\.R$ | ||
^Rcode$ | ||
^rAHNextract_test\.qgz$ | ||
^AHN_sheets$ | ||
^AHN_output$ | ||
^Routput - Shortcut\.lnk$ | ||
^README_cache$ | ||
^README\.HTML$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^setupPackage\.R$ | ||
^shiny$ | ||
^deprecated$ | ||
^\.lintr$ | ||
^rAHNextract\.code-workspace$ | ||
^\.vscode$ | ||
^\.github$ | ||
^Packaging$ | ||
^\.Rbuildignore$ | ||
^data-raw$ | ||
^builds$ | ||
|
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,42 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages |
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,27 +1,31 @@ | ||
Type: Package | ||
Package: rAHNextract | ||
Title: Extract elevation points or areas in the Netherlands from the AHN | ||
Version: 0.97 | ||
Date: 22-04-2020 | ||
Version: 0.98 | ||
Date: 16-04-2024 | ||
Author: Jelle Stuurman | ||
Maintainer: Jelle Stuurman <[email protected]> | ||
Description: Extract elevation points or raster areas or point clouds areas in the Netherlands from the Actueel Hoogtebestand Nederland (AHN). Raster or point clouds extraction is possible of a custom area for the AHN1, AHN2 or AHN3. | ||
URL: https://github.com/Jellest/rAHNextract | ||
Description: Extract elevation points or raster areas in the Netherlands | ||
from the Actueel Hoogtebestand Nederland (AHN). Raster extraction is | ||
possible of a custom area for the latest AHN made available by PDOK. | ||
License: AGPL (>= 3) | ||
URL: https://jellest.github.io/rAHNextract/ | ||
BugReports: https://github.com/Jellest/rAHNextract/issues | ||
License: GPL-3 LICENSE.md | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.1.0 | ||
Depends: | ||
R (>= 4.0) | ||
Imports: | ||
rgdal, | ||
sf, | ||
raster, | ||
lidR (>= 2.2.3) | ||
terra, | ||
xml2 | ||
Suggests: | ||
sp, | ||
knitr, | ||
rmarkdown | ||
Depends: | ||
R (>= 2.10) | ||
VignetteBuilder: knitr | ||
dplyr, | ||
knitr | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
LazyData: true | ||
References: - Actueel Hoogtebestand Nederland (AHN), https://www.ahn.n - | ||
Publieke Diensten Op De Kaart (PDOK), | ||
https://www.pdok.nl/introductie/-/article/actueel-hoogtebestand-nederland-ahn | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.1 |
Oops, something went wrong.