Aliases: kmlLine
Keywords: spatial
### ** Examples xx <- readShapeSpatial(system.file("shapes/fylk-val-ll.shp", package="maptools")[1], proj4string=CRS("+proj=longlat +ellps=WGS84"))
Warning: readShapeSpatial is deprecated; use rgdal::readOGR or sf::st_read
Warning: readShapeLines is deprecated; use rgdal::readOGR or sf::st_read
out <- sapply(slot(xx, "lines"), function(x) { kmlLine(x, name=slot(x, "ID"), col="blue", lwd=1.5, description=paste("river:", slot(x, "ID"))) }) tf <- tempfile() kmlFile <- file(tf, "w") tf
[1] "/tmp/Rtmpul02DQ/filea02fa4fb87f4a"
cat(kmlLine(kmlname="R Test", kmldescription="<i>Hello</i>")$header, file=kmlFile, sep="\n") cat(unlist(out["style",]), file=kmlFile, sep="\n") cat(unlist(out["content",]), file=kmlFile, sep="\n") cat(kmlLine()$footer, file=kmlFile, sep="\n") close(kmlFile)