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

improved logic of getting rectified grid #9

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
13 changes: 7 additions & 6 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
^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$
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,17 +3,21 @@
.RData
.Ruserdata
inst/doc
data-raw/
tests/
scratch/
AHN_sheets/
AHN_output/
Rcode
rAHNextract_test.qgz
my_output/
Nederwaard1/
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: 11-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