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())

print(Aelly.head())

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

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

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.

Here are my links to the data:
http://blog.naver.com/khm2963/220929301892
below pictures is the loading procedure of my fly
