Вот моя среда:
Код: Выделить всё
name: geotest
channels:
- defaults
- conda-forge
dependencies:
- python=3.11
- geopandas
Код: Выделить всё
import geopandas as gpd
import shapely
print(
gpd.GeoDataFrame(
geometry=[shapely.geometry.Point(-100,40)], crs='EPSG:4326')
.to_crs('ESRI:102008')
)
# Exactly the same command
print(
gpd.GeoDataFrame(
geometry=[shapely.geometry.Point(-100,40)], crs='EPSG:4326')
.to_crs('ESRI:102008')
)
Код: Выделить всё
$ python minimal.py
Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.
Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.
geometry
0 POINT (inf inf)
geometry
0 POINT (-321422.376 6782.160)
Соответствующие части моего списка conda:
Код: Выделить всё
python 3.11.7 hf27a42d_0
gdal 3.6.2 py311he4f215e_4
geopandas 0.14.2 py311hecd8cb5_0
geopandas-base 0.14.2 py311hecd8cb5_0
geos 3.8.0 hb1e8313_0
pyproj 3.6.1 py311h717f92e_0
shapely 2.0.1 py311ha6175ea_0
Подробнее здесь: https://stackoverflow.com/questions/780 ... rect-resul