Creates an empty known location tibble with the following columns of core metadata:
locationID
locationName
longitude
latitude
elevation
countryCode
stateCode
countyName
timezone
houseNumber
street
city
postalCode
table_initialize()
Empty known location tibble with the specified metadata columns.
library(MazamaLocationUtils)
# Create an empty Tbl
emptyTbl <- table_initialize()
dplyr::glimpse(emptyTbl)
#> Rows: 0
#> Columns: 13
#> $ locationID <chr>
#> $ locationName <chr>
#> $ longitude <dbl>
#> $ latitude <dbl>
#> $ elevation <dbl>
#> $ countryCode <chr>
#> $ stateCode <chr>
#> $ countyName <chr>
#> $ timezone <chr>
#> $ houseNumber <chr>
#> $ street <chr>
#> $ city <chr>
#> $ postalCode <chr>