Lookup Tables

All lookup tables of the MOFgeoDB
Author

D. Göttlicher

Published

04.12.2021

Lookup Tables

lut_plottype

library(DBI)
library(DT)
temp <- tempfile()
download.file("https://github.com/MarburgOpenForest/MOFGeoDB/blob/master/MOFgeoDB.sqlite?raw=true", temp)

db = dbConnect(RSQLite::SQLite(), dbname =temp)

DBI::dbReadTable(db, "lut_plottype") %>%
  DT::datatable(options = list(dom = 't'))
Warning: Column `xlength`: mixed type, first seen values of type real, coercing
other values of type string
Warning: Column `ylength`: mixed type, first seen values of type real, coercing
other values of type string

lut_tree_state

DBI::dbReadTable(db, "lut_tree_state") %>%
  DT::datatable(options = list(dom = 't', paging = FALSE))
DBI::dbDisconnect(db)