A python extension to a software program that performs a custom task.
0
votes
0answers
22 views
How to find out which layer had a Selection made on it?
If the user makes a select using arcpy.SelectByAttribute() or arcpy.SelectByLocation() how do you find out which layer they made the select so you can use arcpy.SelectCursor(layer)?
0
votes
1answer
17 views
Is there an event handler for a Selection being made using ArcPy?
I want to be able to capture an arcpy.SelectByAttribute() or arcpy.SelectByLocation() event being triggered. There doesn't seem to be an extension that is able to handle this. Is there a way to do ...
1
vote
0answers
30 views
How do you get all the results from a Selection made by Attribute or Location using ArcPy?
Using arcpy I'm trying to get the results of a selection, or what is currently selected as a list.
Basically I'm attempting to build an addin which on click will either perform an operation where I ...
2
votes
0answers
39 views
Building Arc add-ins without needing to restart Arc [duplicate]
One of the things that annoys me the most with trying to use the Arc add-in wizard is that I need to restart Arc every time I want to test something. This is especially annoying if I've got syntax ...
2
votes
1answer
41 views
Why does Fetch Python Plugins responded with only the installed ones?
I use QGIS 1.8. Whenever I demand to install plugins through Fetch Python Plugins it displays only those the already installed. I couldn't find for example; point sampling, group stats and photo2shape ...
2
votes
1answer
40 views
Pythonaddins SaveDialog filter
If you look in the ArcGIS 10.1 help, the Pythonaddins module SaveDialog shows the following:
SaveDialog({title}, {name_text}, {starting_location})
But if you open the python window in ArcMap, you ...
0
votes
0answers
52 views
Assign spatial reference for 1000 different ECW raster datasets using 1000 different *.prj files through python programming or .net
I am having 2000 ECW raster datasets without spatial reference and also I have 2000 *.prj files in another folder. I know only the way as right click on raster datasets-->properties-->Spatial ...
0
votes
2answers
245 views
Synchronize Google Earth to ArcMap and vice versa
I found this old script that worked okay in 9.3, but since I've upgraded to 10.1 the VB code can't work. It basically allows you to quickly pan in Google Earth to find a feature, then you click on a ...
3
votes
2answers
65 views
Should Python Add-In installed in map which is packaged be part of *.mpk?
Using ArcGIS for Desktop 10.1 SP1, I just created a map package (.mpk) from a map (.mxd) which had a Python Add-In (.esriaddin) installed.
When I unpacked the .mpk the .esriaddin was neither ...
3
votes
2answers
101 views
How to control state of buttons in Python Add-In?
I have bunch of buttons to perform separate tasks within a Python Add-In. Buttons are greyed out and required to be enabled after initial tools run. In the following example, tool1 is turned off after ...
1
vote
0answers
110 views
Python Addin toolbar- Environment mask parameter not being recognised?
I've created a button on a python addin toolbar which uses the selected features from the selected layer in the TOC, creates a feature layer from that selection and uses that feature layer to set the ...
0
votes
0answers
17 views
connexion to postgres and update attribute table of a shapfile in QGIS [duplicate]
I have created a plugin with "plugin builder" , now I search to connect my plugin to postgres. I have a shapfile and I try to find a script in Python that can use to assign a SQL query to my table ...
2
votes
2answers
134 views
Run Python child script using Python Add-In button class?
I have a Python script which I want to execute using Python Add-In button class. Right now, I am using following:
class child(object):
"""Implementation for Toolbar_addin.button2 (Button)"""
...
1
vote
2answers
118 views
access attributes of one class for use in another class in python add-in
I want to get combobox attribute 'dem' and use it for further processing in class ExtentData. But I am not sure how to get attributes from one class to another for processing in pythonaddin. In ...
0
votes
0answers
67 views
Connect script with a sub-menu entry within Python-Addin
I have created a menu entry using "pythonaddins" and it contains 2 sub-menus. Two separate scripts have to be linked to the sub-menus which should be invoked one-by-one when I click on sub-menu entry. ...
1
vote
1answer
52 views
Filter ArcSDE layers of the TOC into a combobox
I've a list of layers of the current workspace in a combobox, but I want to list only the layers of the ArcSDE Connection, not the others I've in the TOC.
How can I filter the name of this layers?
5
votes
1answer
77 views
Is it possible publishing a Python Add-in in a web service?
I'm trying to make a multiuser web service for editing an ArcSDE geodatabase.
I wanted to know if I can to add my python add-in in Arcgis Server? And if the answer is yes, how can I publish it?
1
vote
0answers
132 views
How to access selected feature attributes using Python Add-in button?
I'm trying to extract the attributes of a selected feature in ArcMap using an add-in button, but I don't know how to refer to this selection in the script.
Later I need to copy these attributes into ...
0
votes
1answer
192 views
How to refresh a Combobox Add-in in ArcGIS 10.1
I need to refresh the value in the combobox after an event from other tool in the same add-in (ARCGIS 10.1. Python).
I've changed the value of the combobox with the code: combobox.value = val
and I ...
8
votes
4answers
466 views
Best method to re-compile an Python Addin after editing script?
I have been developing a few python addins and I'm just wondering what is the best way to re-compile the addin anytime I edit the script.
Currently, if I make an edit to the script, it seems like I ...
4
votes
1answer
286 views
Refresh combo box in add-in
I've got an add-in with a combo box and want to refresh the list in the combo box after an event in one of the other tools in the same add-in toolbar.
Can I call the combo box somehow to refresh it ...
0
votes
1answer
150 views
Clip data and add layer to second dataframe using python Add-In
I want to clip a layer from data frame 1 and add it to the data frame 2 using the following script. But instead it just add all grids to current data frame 1 and don't update data frame 2. Please ...
3
votes
0answers
245 views
Reset python add-in
I have a toolbar which enables a second and third combobox when a selection is made on the previous. I would like to add a button to 'reset' the toolbar. Basically reload the toolbar to it's original ...
3
votes
1answer
283 views
Import functions in python Add-In logic script
I am running into an error. I have a set of functions which I want to import in the python Add-In script at the time of execution, but when I built Add-In with "import stats" line then tools are ...
5
votes
3answers
361 views
Code to open web browser crashes ArcMap when run from a Python add-in
I created an ArcMap Python add-in using ArcGIS 10.1 to open a webpage after the map is clicked. It opens the page but then ArcGIS crashes.
import arcpy
import pythonaddins
import webbrowser
class ...
5
votes
2answers
822 views
Select and copy features in ArcMap using Python add-in tool
I'm trying to add a tool to an add-in toobar to select features from an existing feature class and copy them across to another feature class. I need two tools, one for a point and one for a rectangle. ...
2
votes
1answer
94 views
definition query and mosaic dataset from gdb ArcMap 10.1 SP1
I have a Python AddIn Combobox to select a value from the drop-down list. This value changes the definition query of the layers in mxd. This works fine for "normal" feature classes, not for a mosaic ...
2
votes
1answer
68 views
How to declare folder name as global?
I have asked similar question at stackoverflow but posting here as well since it involves ArcGIS and python Add-In. Following code shows first step where i have to declare output folder as global so ...
2
votes
1answer
82 views
How to edit Python Add-In and get changes to work?
I have created an Add-In using Python. However, when I edit the Python script for that Add-In and re-create the '.esriaddin' file, I don't get updated results when using that Add-In. Do I need to ...
6
votes
1answer
178 views
What percentage of ArcGIS users are using version 10.1 already?
I'm planning on building an add-in using ArcPy, but some of the functionality I need is only available in 10.1. I want to distribute this add-in and was wondering if making it 10.1 only would limit ...
3
votes
2answers
357 views
How to draw rectangle to clip layers using python addin in ArcGIS 10.1?
I want to clip rasters in data view using interactive rectangle (to define Area of Interest) and add them to current dataframe. Following is a piece of code which is not returning anything. Any ...