I am loading from pandas to geopandas to then sue the GeoAccessor to load data in, the code is below:
df['geometry'] = df['geometry'].apply(wkt.loads)
gdf = gpd.GeoDataFrame(df, geometry='geometry', crs='epsg:27700')
sdf = GeoAccessor.from_geodataframe(gdf, True, column_name='SHAPE')
df_spatial_fc = sdf.spatial.to_featurelayer(
title=self.layer_name,
gis=self.gis,
tags=tags)
However, when I check the crs in the layer, it states it is 3857 (102100). It's leading to anomalies in the display of the data.
Any ideas?