export_kml {psyosphere} | R Documentation |
Export tracks as kml files.
export_kml(tracks, t_id = "id")
tracks |
|
t_id |
character or numeric. Column name in |
track_name
is the name of the track.
file_name
is the file name of the kml file.
color
is the color of the track. For instance "ffaa00bb"
sets the transparency to bb
in exdecimal or 73%, sets blue to 00
, sets green to aa
, and sets red to ff
. See also aes_colour_fill_alpha
.
Benjamin Ziepert. Please send feedback to: feedback-psyosphere@analyse-gps.com.
codeexport_gpx
## Not run: # Get tracks data(psyo) # Add columns psyo[,"track_color"] <- "bb00aaff" psyo[,"track_name"] <- psyo[,"id"] psyo[,"file_name"] <- paste0(psyo[,"track_name"], ".kml") # Export files export_kml(psyo) ## End(Not run)