sf
object for Meteorological Stations or Control Points in a GEOtop simulationR/get.sf.points.R
get.geotop.points.Rd
Get a sf
object for Meteorological Stations or Control Points in a GEOtop simulation
keyword prefix
keyword suffixes
coordinate keyword suffixes. Default is c("PointX","PointY")
GEOtop simulation path
further arguments for get.geotop.inpts.keyword.value
# \donttest{
###See simulation template: "https://github.com/ecor/geotopbricks_doc/tree/master/template/sumava"
wpath <- "https://raw.githubusercontent.com/ecor/geotopbricks_doc/master/template/sumava/"
## system.file("template/sumava",package="geotopbricks")
out <- get.geotop.points(wpath=wpath)
#> [1] "Code" "Elevation" "Source" "CoordinateX" "CoordinateY"
#> [1] "CoordinateX" "CoordinateY"
out <- get.geotop.points(prefix="CoordinatePoint",suffix=c("Code","Source"),wpath=wpath)
#> [1] "Code" "Source" "X" "Y"
#> [1] "X" "Y"
out <- get.geotop.points(prefix="MeteoStation",suffix=c("Code","Source"),wpath=wpath)
#> [1] "Code" "Source" "CoordinateX" "CoordinateY"
#> [1] "CoordinateX" "CoordinateY"
# }