Is there an Julia function to transform coordinate reference system (e. g. st_transform in R)?

Viewed 69

I have an .shp file with ETRS89 / Poland CS92 coordinates and I want to transform it to WGS84[long/lat].
Example of transformation for a point:

ETRS89 / Poland CS92: (184074.7, 682954.7) --> WGS84: (14.18703, 53.91454)

In R it could be done using st_transform function from sf library:

st_transform(polska_grid, "+proj=longlat +ellps=WGS84+datum=WGS84")

Is there function like st_transform in Julia?

Thank you in advance!

1 Answers
Related