set crs in geopandas code example
Example 1: geodataframe change crs
geodataframe = geodataframe.to_crs('')
Example 2: assigning crs using python pyproj
import pyproj
crs = pyproj.CRS("EPSG:32643")
print(crs.is_projected)
geodataframe = geodataframe.to_crs('')
import pyproj
crs = pyproj.CRS("EPSG:32643")
print(crs.is_projected)