What is the difference between geoaccessor and geoseriesaccessor, and how can I access geoseriesaccessor?
I have the following snippet of code:
df.spatial.as_arcpy()
returns the error:
AttributeError: 'GeoAccessor' object has no attribute 'as_arcpy'
as_arcpy is a method of GeoSeriesAccessor, not GeoAccessor, so how do I specify GeoSeriesAccessor?
Thank you,
Tyler
Documentation in general is here
API Reference for the ArcGIS API for Python — arcgis 1.9.1 documentation
Well, I cleared up a major blind spot that's helps me. GeoAccessor uses spatial namespace while GeoSeriesAccessor uses geom namespace. Unless I missed it in the docs, this is not completely obvious. That's why I was getting the attribute error above.
Tyler