Skip to content

Commit

Permalink
Merge pull request #13 from Jellest/rAHNextract_098_dev
Browse files Browse the repository at this point in the history
releaase of rAHNextract v. 0.98
  • Loading branch information
Jellest authored Apr 16, 2024
2 parents 8392498 + e81f4c9 commit d262960
Show file tree
Hide file tree
Showing 143 changed files with 3,723 additions and 10,528 deletions.
16 changes: 10 additions & 6 deletions .Rbuildignore
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$

42 changes: 42 additions & 0 deletions .github/workflows/pkgdown.yaml
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
16 changes: 10 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
.RData
.Ruserdata
inst/doc
data-raw/
tests/
scratch/
AHN_sheets/
AHN_output/
Rcode
rAHNextract_test.qgz
my_output/
Routput - Shortcut.lnk
README_cache
setupPackage.R
Packaging/
shiny
.gitignore
rAHNextract.code-workspace
rAHNextract.Rproj
deprecated/
.lintr
.vscode
docs
.Rproj.user
builds/
.gitignore
38 changes: 21 additions & 17 deletions DESCRIPTION
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
Loading

0 comments on commit d262960

Please sign in to comment.