Skip to content

Commit 7e2fad8

Browse files
committed
calibration and vignette
1 parent 2488a55 commit 7e2fad8

33 files changed

+669
-206
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.Rdata
44
.httr-oauth
55
.DS_Store
6+
inst/doc

DESCRIPTION

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: GEDIcalibratoR
2-
Title: What the Package Does (One Line, Title Case)
2+
Title: Location Calibration For GEDI Using ALS Reference Data
33
Version: 0.0.0.9000
44
Authors@R:
5-
person("First", "Last", , "first.last@example.com", role = c("aut", "cre"),
6-
comment = c(ORCID = "YOUR-ORCID-ID"))
7-
Description: What the package does (one paragraph).
5+
person("Johannes", "Heisig", , "jheisig@uni-muenster.de", role = c("aut", "cre"),
6+
comment = c(ORCID = "0000-0003-3586-3001"))
7+
Description: GEDIcalibratoR facilitates location calibration for GEDI. It makes downloading tiles of ALS, DEM, and DEM data easy and evaluates possible spatial shifts using calibration grids. The best suitable shift can then be applied to the original data and may improve statistical models and following analyses.
88
License: MIT + file LICENSE
99
Encoding: UTF-8
1010
Roxygen: list(markdown = TRUE)
@@ -15,8 +15,16 @@ LazyData: true
1515
Imports:
1616
crayon,
1717
dplyr,
18+
ggplot2,
1819
leafpop,
1920
mapedit,
2021
mapview,
2122
R.utils,
22-
sf
23+
sf,
24+
stats,
25+
terra,
26+
utils
27+
Suggests:
28+
knitr,
29+
rmarkdown
30+
VignetteBuilder: knitr

NAMESPACE

+14
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
# Generated by roxygen2: do not edit by hand
22

3+
export(apply_shift)
34
export(cal_extract)
5+
export(cal_grid_circle)
46
export(cal_grid_rect)
57
export(download_tiles)
8+
export(get_best_shift)
9+
export(get_no_shift)
610
export(intersect_tiles2download)
711
export(make_rhm)
12+
export(plot_calibration)
813
export(plot_shift_stats)
914
export(select_tiles2download)
1015
export(shift_stats)
16+
importFrom(stats,cor)
17+
importFrom(stats,sd)
18+
importFrom(stats,setNames)
19+
importFrom(stats,step)
20+
importFrom(stats,var)
21+
importFrom(utils,download.file)
22+
importFrom(utils,setTxtProgressBar)
23+
importFrom(utils,txtProgressBar)
24+
importFrom(utils,unzip)

R/GEDIcalibratoR-package.R

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#' @keywords internal
2+
"_PACKAGE"
3+
4+
## usethis namespace: start
5+
#' @importFrom stats cor
6+
#' @importFrom stats sd
7+
#' @importFrom stats setNames
8+
#' @importFrom stats step
9+
#' @importFrom stats var
10+
#' @importFrom utils download.file
11+
#' @importFrom utils setTxtProgressBar
12+
#' @importFrom utils txtProgressBar
13+
#' @importFrom utils unzip
14+
## usethis namespace: end
15+
NULL

R/data.R

-16
This file was deleted.

0 commit comments

Comments
 (0)