I'm trying to obtain traffic count data surrounding specific addresses. The documentation for this function is very vague as to what it needs as an input. This is an example of what I am trying right now, with no success.
from arcgis import gis, geoenrichment, summarize_within
bufferedArea = geoenrichment.BufferStudyArea(
area='5030 Antelope Rd, Antelope, CA 95843',
radii=[2],
units='miles',
overlap=False,
travel_mode=False)
summarize_within(bufferedArea,
'traffic counts',
gis=my_gis # my_gis is what allows access to the arcgis paid features)The error I get when trying to run this just says 'Job Failed' which is also not helpful. I can't be the only person in the world that has wanted to retrieve this data and does NOT want to use arcgis online to do it. Anyone able to provide some insight here?