View source: R/point_coord_convert.R
point_coord_convert | R Documentation |
Convert coordinates of a given point from one CRS to another by setting EPSG codes
point_coord_convert(x, y, epsg_in = 32632, epsg_out = 4326)
x |
a number corresponding to x/lon coordinates of the point |
y |
a number corresponding to y/lat coordinate of the point |
epsg_in |
a number corresponding to EPSG code of initial CRS of the point, default from UTM32 |
epsg_out |
a number corresponding to EPSG code of converted CRS of the point, default to WGS84 |
dataframe of converted x/lon and y/lat coordinates of the point
point_coord_convert(738239.9, 5073656) point_coord_convert(738239.9, 5073656, epsg_in = 32632, epsg_out = 32633)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.