Hi Guys,
Having an issue with a projection where the projection is off by 70 meters
example:
gis = GIS("url", "user", password)
content=gis.content.get("ID")
layers=content.layers
points=pd.DataFrame.spatial.from_layer(layers[0])
points['SHAPE']=points['SHAPE'].geom.project_as(29900)
my source data is in EPSG:2157 but i need EPSG:29900, when I view the source data in an eternal package it aligns with the the backround map,
if I project to EPSG:29900 I'm roughly 70meters off from the basemap
if i project_as EPSG:4326 it seems to work with no issues and aligns with the base map.
Is there any known issues or any other ways to changing coordinate systems.
have had the same issue using spatial DataFrame and Spatially Enabled Dataframe.
I've also used geopandas to convert the data and that works perfectly so I'm nearly certain there is an issue.