The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

How do I choose parameters for the Huff model that best fit my data?

I'm using the Huff model for some analysis I'm doing. For those not aware, the Huff model is a probabilistic model for retail trade area analysis. H_ij is the probability that a person at location ...
0
votes
0answers
7 views

Only accept alphanumeric characters and underscores for a string in python [migrated]

I'm currently writing validation code for a tool parameter in ArcMap 10 (updateMessages) and need to prevent users from using non-alphanumeric characters within a string as it will be used to name a ...
4
votes
1answer
83 views

Populating a Value List in one Parameter, from Values Derived from a Second Parameter, Python

Using the Validator in the ArcGIS 10.1 tool GUI, can I loop through and List feature classes from a workspace type parameter (ie a file geodatabase) and then go on and list the values of a field in a ...
3
votes
2answers
47 views

Is it possible to have tool parameters appear only if clause met?

I'm writing an arcpy script for a tool that has a large number of parameters (around 10). About half of these are "dependent" (perhaps not in the technical sense of the term), as in [first ...
2
votes
1answer
66 views

ArcGIS 10: How to populate SQL options for parameter in tool

I'm trying to create a tool where individuals can select a variety of records using a SQL expression that is then passed to a calculation. I can add a parameter under the tool, and select SQL ...
2
votes
1answer
119 views

Programmically Populate Value List in ArcGIS Tool Interface

I'm just trying to set up the parameters in a tool I've built in ArcGIS. What I want to do is read in a feature class or table and get the values in a specific field called "SITE". The field contains ...
3
votes
1answer
84 views

How to Clear Parameters from Model Builder - ArcGIS

I'm attempting to clear out the parameters from my model so that the parameter locations don't show up in the tool when launched from ArcToolbox. ESRI's resource center has a couple of sentences ...
1
vote
1answer
131 views

ArcGis 10.0 SP5 - Drag & drop support vs tool parameter types

I got a custom Python-tool, and one of the parameters is a (multivalue) "File" type parameter, filtered on a given set of extensions. Also, I got users requesting drag and drop; dragging files from ...
8
votes
1answer
270 views

How can I see the coordinate transformation parameters in QGIS?

How can I see (and edit if possible) the transformation method and parameters used by QGIS for "on-the-fly" transformation, and then for saving data in another CRS? Like in ArcGIS? Here is the ...
2
votes
0answers
126 views

How to Load a Record Set Parameter in a tool dialog

I am trying to create a tool that allows a user to update a table row without starting an edit session. I have a script tool set up with a record set parameter and I use this set up to add new rows to ...
3
votes
1answer
293 views

Parameterizing SQL Views Geoserver

I must do a view in geoserver. I seen some example here: http://docs.geoserver.org/stable/en/user/data/database/sqlview.html. The example show the operator like for parameterizing view. Suppose, now ...
4
votes
1answer
153 views

Calculate field based on a set value if optional parameter is not specified

In my model, I have a Calculate Field which will populate the field with a certain integer (in this case, 0). I've added an optional integer model parameter Start ID, where the user can specify the ...
0
votes
1answer
187 views

How to create a custom projection of PRS92 and UTM 51N for the Philippines? [duplicate]

Possible Duplicate: How to define new custom projections in QGIS? How do I create a customized CRS parameter in quantum GIS? I'm try to create a projection of PRS92 and UTM 51N. This ...
1
vote
1answer
273 views

Custom C# tool populate field combobox parameter from layer parameter

I'm creating a custom tool for arcmap toolbox where user select FeatureLayer in one combobox, and in next combobox user can select a field from selected FeatureLayer. FeatureLayer combobox fills ...
1
vote
1answer
181 views

Setting Script Tool Parameters Using Python and ArcGIS 9.3.1

Can't quite figure this out and i'm sure it's a simple fix. I have a script that utilizes the AGSSOM tool. It first stops all published services, allows for databases to be tidied up by ...
3
votes
2answers
829 views

Python in ArcGIS: How to use a variable as part of the output path

I´m trying to use a variable as part of the output path of a shutil command. Unfortunately I couldn´t work it out how to do it. Can anybody help? import arcpy import shutil Name = ...
3
votes
1answer
195 views

How to fill Field Mappings parameter in script tool on updateParameters?

My goal is to get a list of fields choosen by an user from existing fields in feature class. I think that I can show all fields in Field Mappings dialog, an user deletes unwanted fields and I get a ...
3
votes
1answer
92 views

How can i get a transformation-parameters-report (spatial-adjustment)

everyone! In ArcGIS resource center about spatial adjustment (How Transform works), there are transform report like this ! Scale (X,Y) = (249.927,249.927) Rotation (degrees) = (0.362) Translation = ...
0
votes
2answers
339 views

Adding result of geoprocessing service — consume in ArcMap desktop

I am new to ArcGIS Server. I have a Python script tool that I've published as a geoprocessing service. The script takes a point feature class, writes a subset of the input FC as a new FC in the ...
4
votes
1answer
2k views

Setting Output Parameter in ArcPy for Server Tool

I have published the following script tool (which is wrapped in a model, i.e. just the script tool and all of its parameters) to ArcGIS Server 10. The GP service succeeds when run, but I cannot ...
1
vote
1answer
115 views

How Do I Debug QuickExport Parameters in the Data Interoperability Extension for ArcGIS 10 to Exporting to Postgres

I tried to configure the QuickExport parameters by examining the log file after I used the QuickExport tool itself. The only things I changed from the log file are the parameters as I want the user to ...
1
vote
3answers
732 views

Unable to Provide Input for a MultiValue Parameter Script Tool

I have the following script: #Import ArcPy site package import arcpy from arcpy import env from arcpy import Raster from arcpy.sa import ZonalStatistics from arcpy.sa import CreateConstantRaster # ...
9
votes
3answers
2k views

Setting parameters in Script Tool using Python

I hate to bug you all with the same problem over and over again but I run into a new problem everytime I make a slight change to the code. All I did to the code below was to replace field names to ...
0
votes
3answers
1k views

Using URL parameters in ArcGIS Server 10 Viewer for Flex

Anyone know if you can use URL parameters to turn on layers. I have had success using URL parameters to go to specific coordinates.
3
votes
1answer
540 views

Ordnance Survey data to WGS-84

Recently I have reprojected Ordnance Survey data from British National Grid (ORD SURV GB) to WGS-84 using ArcGIS 9.2. After re-projecting I have found some shift in the data. Can any body guide me ...