Select to view content in your preferred language

Notebook to Azure Function - arcpy.analysis.TabulateIntersection?

111
0
Monday
RogerAsbury
Frequent Contributor

I'm looking to move a notebook to an Azure function app. As far as I am aware, the arcpy library can not be installed there, but has the super handy function of TabulateIntersection, so I can take a line such as:

zone_percentages = arcpy.analysis.TabulateIntersection(parcels, "PAN", zones, zone_csv, ["ZONE", "ZONE_DESC"], out_units="ACRES")

And get a handy variable containing all the intersect data of one layer (parcels) on another (zones) in a nice table. 

So, I'm wondering:

1) Is possible to add the arcpy library to an Azure function app project, and if so how? (pip install arcpy finds nothing to install.)

2) What is the preferred non-arcpy way to accomplish this?

--
Roger Asbury
Analyst/Programmer - Fairbanks North Star Borough
0 Kudos
0 Replies