Geoprocessing is a GIS operation used to manipulate GIS data.
0
votes
0answers
6 views
ArcGIS 9.3 geoprocessing service output consideration
I'm developing geoprocessing service which do few processes with geographic data. I would like to get somehow geometry of those data and use it in my web aplication (JS ArcGIS API). Now I'm wondering ...
5
votes
1answer
50 views
Sort a feature table by geographic location
Here's in interesting challenge: I need to embed a table in a map layout so that the records in the table are sorted according to their geographic position on the ground. For example, in a ...
0
votes
1answer
25 views
Error code 500: Geoprocessing Task Failed
We are calling custom Geoprocessing Tool from sliverlight application. This GP Tool throws an below error. When I take a request from fiddler and copy in IE and execute also fails with below message. ...
2
votes
2answers
48 views
What tool would you use to “clip” a vector line file to a vector polygon file?
I am trying to select the use of a large vector line file within only the parameter of a vector polygon file to do spatial analysis. It would be the same thing as using the extract> clip tool under ...
6
votes
3answers
122 views
Why is it important to use feature layers in ModelBuilder?
I am trying to understand creation of a geoprocess with ModelBuilder, but I don't know why it's important to use feature layers instead of feature classes when creating a geoprocess with ModelBuilder. ...
7
votes
2answers
117 views
How to increase maximum memory usage cap for running Arc 10.1?
Not sure if this is strictly GIS related or perhaps belongs on StackOverflow...it is regarding ESRI ArcGIS 10.1, so I'm sticking it here.
I'm looking for options to increase processing capacity, and ...
0
votes
1answer
50 views
How to buffer increasing/decreasing population zones?
I will find out the difference in population between year 2000 and 2013. I have a feature class file with the population in year 2000 and 2013 that are connected to the municipal number and that is a ...
2
votes
1answer
58 views
Getting “Failed to open tool” message when trying to run geoprocessing tool from C# code
I've been experimenting with the Military Aspects of Terrain Template, which has a toolbox associated with it. I've been using the following WPF Runtime code, which should open a tool in the ...
1
vote
1answer
47 views
GDAL bindings problem with ArcMap 10.1 Python tool
I'm really getting mad with this. ArcGIS sometimes can be so just...irritating!
Forgive me if this question is by any means duplicating this one or similar ones, but I really can't find my way out of ...
0
votes
1answer
48 views
Merge attribute of points into a polygon : Arcmap 10
I have points layer which the attribute looks like this:
FID Shape ID Lat Long
0 Point 2065 -5.51666 106.48333
1 Point 2319 21.93333 120.73366
I also have polygons layer :
FID Shape ...
2
votes
1answer
47 views
Clipping buffers to census tracts
I have donut buffers generated to protect anonymity of household locations. They need to be clipped so that they are only inside the census tract that the original point was in. The code takes about 8 ...
2
votes
1answer
66 views
How to efficiently check for feature overlaps with Arcpy?
In an effort to reduce processing time, I am looking for ways to pre-process data within my script. I have ~18,000 featureclasses with ~500 features each (all simple circle polygons) from which I want ...
4
votes
1answer
50 views
Switching between background 64 bit processing and 32 (so I can use 3rd party ie XTools)
I often run scripts now with 64 bit background processing enabled but when I want to use certain tools like Xtools table to text I have to turn it off as these tools are 32 bit. Is there a way to ...
1
vote
0answers
28 views
Cancel event in Python Gp tools with arcpy
In GP-tools written in C# (ArcObjects) we can listen for the Cancel-event and react on that. I wonder if there is anything similar in Python GP-tools applying arcpy.
I googled that issue and the only ...
7
votes
1answer
75 views
Reduce processing time in Erase function using Arcpy in IDLE
I am processing 18,000 feature classes (saved in a file GDB), each with ~500 records (polygon features) in ocean areas, and I am running a script to remove area overlapping with the coast, using the ...