| wkt {wk} | R Documentation |
Mark character vectors as well-known text
wkt(x = character()) parse_wkt(x) as_wkt(x, ...) ## Default S3 method: as_wkt(x, ...) ## S3 method for class 'character' as_wkt(x, ...) ## S3 method for class 'wk_wkt' as_wkt( x, ..., include_z = NULL, include_m = NULL, include_srid = NULL, precision = NULL, trim = NULL ) ## S3 method for class 'wk_wkb' as_wkt( x, ..., include_z = NULL, include_m = NULL, include_srid = NULL, precision = NULL, trim = NULL ) ## S3 method for class 'wk_wksxp' as_wkt( x, ..., include_z = NULL, include_m = NULL, include_srid = NULL, precision = NULL, trim = NULL )
x |
A |
... |
Unused |
include_z |
Include the
values of the Z and M coordinates and/or SRID
in the output? Use |
include_m |
Include the
values of the Z and M coordinates and/or SRID
in the output? Use |
include_srid |
Include the
values of the Z and M coordinates and/or SRID
in the output? Use |
precision |
The rounding precision to use when writing (number of decimal places). |
trim |
Trim unnecessary zeroes in the output? |
wkt("POINT (20 10)")