geopandas和shapely使用(使用pyproj进行坐标转换)

### if using pyproj>=2.1.0, the preferred method to project geometries is:

import pyproj

from shapely.geometry import Point
from shapely.ops import transform

wgs84_pt = Point(-72.2495, 43.886)

wgs84 = pyproj.CRS('EPSG:4326'

你可能感兴趣的:(小众技术总结,python,postgresql,geopandas,shapely)