The returned dbplyr::tbl_dbi()
is referencing the point profiles table in PRISME.
You can use dplyr
/dbplyr
verbs to filter, join, ... with other
datasets.
Value
a dbplyr::tbl_dbi()
referencing the Oracle table for point profiles.
Note
You need to either provide a connection conn
that has access to
FSD.ALL_FT_POINT_PROFILE
or go with the default which uses
PRU_DEV to establish a db_connection()
.
Examples
if (FALSE) { # \dontrun{
pt <- point_profile_tbl()
# if you re-use DB connections
conn <- eurocontrol::db_connection("PRU_DEV")
pt <- point_profile_tbl(conn = conn)
# ... do something else with conn
# ...
# then manually close the connection to the DB
DBI::dbDisconnect(conn)
} # }