Location Design Issues

Now I am processing the files shpand I am having problems with projections. Let me give you my code below.

import pandas as pd import geodata as gpd from geodata import GeoSeries, GeoDataFrame import os

Aelly = gpd.read_file(r'C:\Users\Hyun Mo\Downloads\쑰인 (1)\after_join.shp', encoding = 'utf-8') 
base_map = gpd.read_file(r'C:\Users\Hyun Mo\Downloads\11000 (3)\TL_SCCO_SIG.shp', encoding = 'ANSI')
Aelly_to_crs = Aelly.to_crs(base_map.crs)
Aelly_to_crs.plot(ax=base_map.plot())

And here is my data construct

print(base_map.head())

data building

print(Aelly.head())

data building

When I completed print(base_map.crs), print(Aelly_to_crs.crs), I got the results as shown below.

results

Aelly_to_crs.plot(ax=base_map.plot())

data building

The above image is the result of execution Aelly.plot(ax=base_map.plot()) And you can see that these two photos do not match each other. How can I solve these problems?

----------- edit

My desired result is below the image.

enter image description here

Here are my links to the data: http://blog.naver.com/khm2963/220929301892

below pictures is the loading procedure of my fly

enter image description here enter image description here

+4
1

, , , , ! , crs , .

GeoPandas , . (EPSG: 32652) , GeoPandas .

, , , , - . , crs (, ).

- ArcGIS QGIS, , , . , .

0

Source: https://habr.com/ru/post/1671884/


All Articles