Reads the XLS
format export of field book data, the JSON
project file, or
the txt
export of StraboMobile data from strabospot.org/my_data and
creates a list with the metadata, and the line or plane orientations.
Usage
read_strabo_xls(file, tag_cols = FALSE, sf = TRUE)
read_strabo_mobile(file, sf = TRUE)
read_strabo_JSON(file, sf = TRUE)
Value
list
containing the following objects:
data
"tbl_df"
object. Metadata.spots
"tbl_df"
object or"sf"
ifsf == TRUE
. Locations and spot descriptions.tags
"tbl_df"
object. Tags and their descriptsions.planar
Plane elements. Same row IDs as in
data
.linear
Line elements. Same row IDs as in
data
.
Examples
if (FALSE) { # \dontrun{
dt <- read_strabo_xls("C:/Users/tstephan/Documents/Lakehead/Field work/StraboSpot_Output_11_01_2022_TS.xlsx")
stereoplot()
stereo_greatcircle(dt$planar, col = "lightgrey")
stereo_point(dt$linear)
read_strabo_mobile("C:/Users/tstephan/Documents/Lakehead/Field work/StraboSpot_Search_06_25_2023.txt")
read_strabo_JSON("G:/My Drive/Moss_Lake/data.json")
} # }