GeoSeries.
set_crs
Set the Coordinate Reference System (CRS) of a GeoSeries.
GeoSeries
NOTE: The underlying geometries are not transformed to this CRS. To transform the geometries to a new CRS, use the to_crs method.
to_crs
The value can be anything accepted by pyproj.CRS.from_user_input(), such as an authority string (eg “EPSG:4326”) or a WKT string.
pyproj.CRS.from_user_input()
EPSG code specifying the projection.
If True, the CRS of the GeoSeries will be changed in place (while still returning the result) instead of making a copy of the GeoSeries.
If the the GeoSeries already has a CRS, allow to replace the existing CRS, even when both are not equal.