Python toolboxes are geoprocessing toolboxes that are created entirely in Python for ArcGIS 10.1
3
votes
3answers
58 views
define parameter descriptions in ESRI Python Toolbox
I'm trying to create some Python Toolboxes for our ArcMap application (e.g. MyTool.pyt)
I can see that the help text is defined with the classes self.description attribute.
However, once I run the ...
3
votes
1answer
221 views
Using Custom Functions in a Python Toolbox
I am trying to put together a python toolbox (Arc 10.1) and would like to use a defined function in my code. The function is:
'sys' is imported at the top of the file
def listdirs(folder):
...
1
vote
2answers
95 views
Select Layer by Location - Arcpy - Why are my inputs being interpreted as invalid?
I am working on a tool in a python toolbox and am totally confused about what is going on and causing my select by location operation to fail (Error 000368).
I am trying to select the features in one ...
1
vote
1answer
128 views
XY event layer doesn't work with ArcGIS Server 10.1
I have a geoprocessing tool written in Python that contains operations on an XY event layer. It worked perfectly when running from ArcCatalog. When published as geoprocessing service on ArcGIS Server ...
1
vote
0answers
50 views
Are multiple separate feature classes more efficient than repeatedly deleting all features from the same feature class?
Quick Version: Is it more efficient, in terms of database performance, to have multiple separate temporary feature classes or one feature class that you repeatedly empty out and fill?
I am working ...