habitatstreams
as an sf
linestring
layer or as a listR/read_habitatdata.R
read_habitatstreams.Rd
Returns the raw data source habitatstreams
(section 'habitat 3260' from
De Saeger et al., 2023) as an sf
linestring
layer or as a list of two objects: the sf
object (CRS:
Belgian Lambert 72 (EPSG-code 31370))
plus a data frame
with textual explanation of the values of the source_id
variable.
read_habitatstreams( file = file.path(locate_n2khab_data(), "10_raw/habitatstreams"), source_text = FALSE )
file | The absolute or relative file path of the data source.
The default follows the data management advice in the
vignette on data storage (run |
---|---|
source_text | Logical, defaults to |
With source_text = FALSE
(default): a Simple feature collection of
type LINESTRING
.
With source_text = TRUE
: a list of two objects:
lines
: the same sf
object as with source_text = FALSE
.
sources
: textual explanation on the values of the source_id
variable in the sf
object.
For more information about this map, see also the documentation of the previous version (Leyssen et al., 2020).
De Saeger S., Dhaluin P., Erens R., Guelinckx G., Hennebel D., Jacobs I., Kumpen M., Van Oost F., Spanhove T., Leyssen A., Oosterlynck P., Van Dam G., Van Hove M., Wils C. (red.) (2023). Biologische Waarderingskaart en Natura 2000 Habitatkaart, uitgave 2023. (Rapporten van het Instituut voor Natuur- en Bosonderzoek; Nr. 31). Instituut voor Natuur- en Bosonderzoek (INBO). doi:10.21436/inbor.96375305 .
Leyssen A., Smeekens V., Denys L. (2020). Indicatieve situering van het Natura 2000 habitattype 3260. Submontane en laaglandrivieren met vegetaties behorend tot het Ranunculion fluitantis en het Callitricho-Batrachion. Uitgave 2020 (versie 1.7). Rapporten van het Instituut voor Natuur- en Bosonderzoek 2020 (34). Research Institute for Nature and Forest, Brussels. doi:10.21436/inbor.18903609 .
if (FALSE) { # This example supposes that your working directory or a directory up to 10 # levels above has the 'n2khab_data' folder AND that the latest version of # the 'habitatstreams' # data source is present in the default subdirectory. # In all other cases, this example won't work but at least you can # consider what to do. library(magrittr) library(sf) hs <- read_habitatstreams() hs hs2 <- read_habitatstreams(source_text = TRUE) hs2 all.equal( hs %>% st_drop_geometry(), hs2$lines %>% st_drop_geometry() ) }