Skip to content

Commit

Permalink
fixes #1573
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed Nov 17, 2024
1 parent fb50db5 commit 6af6f3c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions man/writeVector.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ Write a SpatVector to a file. You can choose one of many file formats.
\item{filename}{character. Output filename}
\item{filetype}{character. A file format associated with a GDAL "driver" such as "ESRI Shapefile". See \code{gdal(drivers=TRUE)} or the \href{https://gdal.org/en/latest/drivers/vector/index.html}{GDAL docs}. If \code{NULL} it is attempted to guess the filetype from the filename extension}
\item{layer}{character. Output layer name. If \code{NULL} the filename is used}
\item{insert}{logical. If \code{TRUE}, a new layer is inserted into the file, if the format allows it (e.g. GPKG allows that). See \code{\link{vector_layers}} to remove a layer}
\item{overwrite}{logical. If \code{TRUE}, \code{filename} is overwritten}
\item{insert}{logical. If \code{TRUE}, a new layer is inserted into the file, or an existing layer overwritten (if \code{overwrite=TRUE}), if the format supports it (e.g. GPKG allows that). See \code{\link{vector_layers}} to remove a layer}
\item{overwrite}{logical. If \code{TRUE} and \code{insert=FALSE}, \code{filename} is overwritten if the file format and layer structure permits it. If \code{TRUE} and \code{insert=TRUE}, only the target layer is overwritten if the format supports it (e.g. GPKG).}
\item{options}{character. Format specific GDAL options such as "ENCODING=UTF-8". Use NULL or "" to not use any options}
}


\examples{
v <- vect(cbind(1:5,1:5))
crs(v) <- "+proj=longlat +datum=WGS84"
Expand Down

0 comments on commit 6af6f3c

Please sign in to comment.