“Geopandas mengatur CRS” Kode Jawaban

Geopandas mengatur CRS

my_geoseries = my_geoseries.set_crs("EPSG:4326")
my_geoseries = my_geoseries.set_crs(epsg=4326)
Curious Cardinal

Geodataframe mengubah CRS

geodataframe = geodataframe.to_crs('')
Annoyed Antelope

Geopandas mengatur CRS

# To set a CRS
gdf = gdf.set_crs('epsg:3857')
# To transform and reprojet geometry into another CRS
gdf = gdf.to_crs('epsg:3857')
>>> gdf.crs  
<Projected CRS: EPSG:3857>
Name: WGS 84 / Pseudo-Mercator
Axis Info [cartesian]:
- X[east]: Easting (metre)
- Y[north]: Northing (metre)
Area of Use:
- name: World - 85°S to 85°N
- bounds: (-180.0, -85.06, 180.0, 85.06)
Coordinate Operation:
- name: Popular Visualisation Pseudo-Mercator
- method: Popular Visualisation Pseudo Mercator
Datum: World Geodetic System 1984
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich
Intempestive Al Dente

GeodataFrame mendapatkan CRS

geodataframe.crs
Annoyed Antelope

Jawaban yang mirip dengan “Geopandas mengatur CRS”

Pertanyaan yang mirip dengan “Geopandas mengatur CRS”

Lebih banyak jawaban terkait untuk “Geopandas mengatur CRS” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya