ArcGIS 10.0 is a specific software version of ArcGIS.

learn more… | top users | synonyms (2)

0
votes
0answers
18 views

Getting started with development for ArcGIS Server

I'm currently working on upgrading a C# web service I wrote a couple of years ago built against ArcGIS Server to ArcGIS Server 10. The application in question does some basic spatial queries and ...
0
votes
1answer
23 views

Setting a scale range for labels in KML files

Is there a way for labels to be displayed in KML only when zoomed in (or out) beyond a certain scale range, just as it is possible in ArcGIS? If exporting to KML from ArcGIS, I guess the first step is ...
1
vote
1answer
30 views

Current map document in python tool

I am attempting to use this code in a tool that I am working on: mxd = arcpy.mapping.MapDocument("CURRENT") df = arcpy.mapping.ListDataFrames(mxd)[0] XMIN = df.extent.XMin YMIN = df.extent.YMin XMAX ...
0
votes
1answer
18 views

How to hide/suppress and rename/alias fields when exporting to KML?

I have a feature class that needs to be exported to a KML file. I wonder if there is a way for me to export only some of the columns of the feature class's attribute table; some attributes are not ...
-4
votes
1answer
43 views

Problem installing GDAL and fiona module in arcmap10?

I am getting message like this Traceback (most recent call last): File "", line 1, in File "C:\Python26\ArcGIS10.0\lib\site-packages\gdal.py", line 2, in from osgeo.gdal import ...
0
votes
0answers
26 views

Is snapping working when changing from NAD83(decimal degree) to NAD83 Zone UTM 11N(meters)?

I've used the following ESRI snippet to Convert the display extents in Pixels (at the current map scale) and then return out the map units. public System.Double ...
0
votes
0answers
21 views

How to get Perpendicular cross section along the river using python and Arc Map 10? [duplicate]

I need to draw the perpendicular line segment along the river at a regular interval. How can i obtain like this output using Python and Arc Map 10 ? I would be very grateful if you give some idea..
3
votes
2answers
48 views

Python split table by “State” field and export to individual tables?

So I have never posted here before. I have used the site a lot for help so many thanks to all the great contributors. So, I have used ArcGIS online to perform batch geocoding (18,000) records and it ...
3
votes
0answers
24 views

Ways to measure similarities/congruence of tracks (point features) in ArcGIS

I have a sets of GPS coordinates recorded while tracking different cross country runners. What I would like to do is to compare how similar the tracks of the individual runners are. Is there a test ...
1
vote
1answer
34 views

ArcGIS crashes with no error number in Visual Studio

I've been developing Add-ins for a while with Visual Studio 2008 and ArcGIS 10. But in my new Add-in development process, I receive no error from Visual studio and ArcGIS crashes with error "Arcgis ...
-1
votes
1answer
47 views

How can i draw a perpendicular line in a stream segment in a regular interval of 30m? [duplicate]

I have a stream segment which is polyline feature. Now I want to draw a line which is perpendicular to stream segment at a interval of 30m. How can i do it using python ? Do you have idea on this .
0
votes
0answers
13 views

Converting Points to Lines in ArcGIS AND retaining attributes of both start and end points

I have been searching and searching and I can't find a particular solution to what I need. I have a table with animal location points. I need to calculate movement distances between points from the ...
1
vote
0answers
21 views

How to join two fields after calculating ?

I have been working with two layers and I am trying to join them and turn them into a raster data. The first layer is a watershed layer which I have assigned each shed a location from the center point ...
0
votes
0answers
14 views

Does the ArcGIS Flex API simplify polygons by default?

I have a feature access map service that I use on an ArcGIS Flex web application. Some polygons published by the feature service, seem to be "simplified" by the Flex API before they are drawn on the ...
0
votes
0answers
14 views

AddLocations_na not loading routes properly from python script

I am trying to do network analysis with python from ArcGIS 10.0 but AddLocations_na is not loading the routes from the routes attribute table. It works for depots and orders quite well however. The ...
-1
votes
0answers
20 views

Arcmap clipped shape export to kml

I'm using Arcmap 10.0 and clipped the layers. When I use the convert map to xml, the clip is gone. Anyway to maintain it?
1
vote
0answers
33 views

How to make multivalue input script run from a toolbox?

I have a working python script: import arcpy sdeconnection = arcpy.GetParameterAsText(0) layerfiles = arcpy.GetParameterAsText(1).split(";") for layerfile in layerfiles: print layerfile lyr ...
0
votes
1answer
27 views

Arcpy Network Analyst solver error

Hello GIS Stack Exchange, I am finding it difficult to load locations to sublayers using python in ArcGIS 10.0 network analyst Vehicle routing problem. I'm also having some trouble debugging my ...
0
votes
0answers
13 views

Possibly corrupt polyline file is causing making polygons problematic.

I used the Feature Class to Polygon tool in ArcMap 10.0 to create a polygon from a polyline shapefile and some polygon boundaries (polylines) are disappearing in the process. The polyline shapefile ...
2
votes
2answers
31 views

Solar analysis; Are there any issues with splitting large DEM

I am trying to run Solar analysis in ArcGIS and it is an enormous DEM of a very mountainous region. I'm obviously going to have to split the DEM, but I was wondering if there are any issues with ...
1
vote
0answers
28 views

Calculating the Centroid of polygon in modelbuilder (VBA to Python) [closed]

Got an easy one, that's got me stuck. I'm moving some models that were created in 9.3.1 to work in 10. Part of the model is calculating the X coordinate of a polygon to a specified field. The code ...
0
votes
1answer
44 views

arcpy.setValue for Condition from Dictionary

Hi: I am trying to create a function to update multiple fields based on different criteria. I want to pass the field name and condition thru' a dictionary (please see the function description in the ...
0
votes
1answer
27 views

Why do objects disappear when I zoom on a dynamic map service?

I have a dynamic web map service that contains some point objects. When I zoom in and out, some of the point object disappear and reappear randomly. The map service is dynamic, no cache has been ...
0
votes
1answer
34 views

territory analysis

I want to determine the territories in which customers to a bank has the shortest path. It can be done with desktop software packages or programming if it is needed. Does anybody has idea on how to ...
1
vote
0answers
35 views

Embed map in a website

I am using arcgis server 10.0. I published a mxd file using arcgis manager resources. I see the web url http://cosmic-dellt410:8399/arcgis/services/DD/MapServer but it says get method not allowed. I ...
0
votes
0answers
24 views

How to specify field name in raster to feature conversion tool or intersect tool?

What I want to do : input: raster file, polygon feature layer process: Convert raster to polygon using IConversionOp.RasterDataToPolygonFeatureData Method Intersect resultant polygon feature class ...
1
vote
2answers
50 views

Set Extents of MXD to new layer data source?

Alright here I go again this forum has been good to me. I add a layer and replace its data with a shapefile I created using the following bit of python: layer = ...
2
votes
2answers
53 views

Field calculator or update cursor?

I have a feature class in which one field (let's call it "Field_A"), as yet empty, is to be populated by the contents of another field ("Field_B") multiplied by a certain number (I'll call it the ...
0
votes
1answer
32 views

Arcgis Server name include domain

When I create a web app using the template it points to cos-t420:8399/arcgisoutput but I need it to be cos-t420.web.com.sg:8399/arcgisoutput How can it be done? am using the java version.
0
votes
1answer
24 views

Make Route with Python and network analyst in ArcGIS 10

Good Day, I'm having trouble debugging my python code to create a network analyst layer in ArcGIS 10.0. Basically when run from a script tool the code completes successfully without actually doing ...
2
votes
0answers
40 views

Differentiate between 10-based Locator and Other Locators

In ESRI documentation, it states that the IAdvancedIntersectionGeocoding interface is only available for use in older locators (9.3.1 and below). I have verified this statement. One major problem is ...
2
votes
0answers
22 views

Why is Orthorectify button not active in Image Analysis Windows in ArcGIS10?

I wanted to Ortho rectify GeoEye HR imagery using existing RPC and IFSAR DTM in Image Analysis. According to ArcGIS Resource center ...
-1
votes
0answers
27 views

Foreign font added to excel column after download [closed]

Using Excel 2007 and after downloading file from server... I've had a foreign font being added to columns with alphabetical text, but not numerical text. --- THOMASá ---- it should be THOMAS. ...
2
votes
1answer
69 views

Python script to update attributes crashing during loop

I have a script to update a field in one feature class from a selected record in another feature class. This is done through looping through records in one feature class selecting appropriate the ...
0
votes
3answers
42 views

Exporting the contents of an attribute table in formats other than an Excel file

I know that it's possible to export the contents of an attribute table to an Excel file, but could they be exported in any other format (from ArcGIS 10.0)? I have a feature class whose attribute table ...
0
votes
2answers
42 views

Thiessen Polygons and Coordinate Projections

I am trying to perform a Thiessen Polygons analysis in ArcGIS 10. My DEM is in GGRS_1987 and the point set I downloaded from Google Earth is in WGS_1984. The points display correctly but when I run ...
0
votes
0answers
34 views

How specify a corridor minwidth?

I’m trying to make a corridor between two substations with ArcGIS, a macro corridor and a micro corridor. I have two questions in this respect and would be grateful for your suggestions. a) How can ...
0
votes
1answer
33 views

Problem in filling table of ArcSDE feature class in SQL Server 2008?

I have an ArcSDE point feature class and I add it to ArcMap 10. After that I add some points to it and fill every field for all points in the attribute table and Save Editing. However, the SQL ...
1
vote
1answer
70 views

Editing attribute tables using Python

I am new to Python, so sorry for such a trivial question. There is a shapefile (let's call it Structures.shp) and the script I'm writing needs to update the value of only one record in only one field ...
0
votes
0answers
52 views

Congressional Redistricting

I have a project coming up where I need to create new congressional district looking at only total population data. I am planning on using the census tract level of data, but I am having some ...
1
vote
2answers
39 views

HP Plotter 1050c plus

I have an (1998 manual) old plotter HP PLotter 1050c Plus (only works on Windows XP)... It prints fine, but the Source/Receivers are not showing up on the map nor the legend. Everything else is ...
1
vote
2answers
78 views

Arcpy to copy a layer in the ArcMap TOC, rename the copy, and paste back to TOC?

I want to make a copy of a layer in the ArcMap TOC (passed to my script as a Feature Layer), assign the copy a new name, set a definition query on it, and then add the copied Feature Layer back into ...
1
vote
2answers
74 views

arcpy.sys versus sys

I just noticed that in the arcpy module (Esri) there's a sys sub-module. Does anyone know what the difference is in using one or the other? I've been looking around and can't find anyone who uses ...
2
votes
3answers
48 views

How to divide a polygon with another polygon

I am working in ARCMAP 10. I am trying to divide a polygon with another polygon. I don´t want to clip any part away, but only divide the polygon? The polygons are stored in two different layers.
2
votes
1answer
36 views

Why does new feature created not snap to existing feature vertices in ArcGIS 10?

I have created a polygon feature earlier then I wanted to create points on the polygon vertices but it won't snap on top of the vertex. I wanted to know the reason why it does not snap and is there ...
1
vote
0answers
13 views

xy tolerance from c#.net

For some graph work, I need the value of X,y tolerance. I found ISpatialReferenceTolerance.XYTolerance Property. But I couldn't find any option that how can I get ISpatialReferenceTolerance interface ...
3
votes
2answers
73 views

arcpy Problem with updateRow() when trying to update fields with UpdateCursor

I have a list of values which I am trying to add to an existing shapefile. The field where the values need to be inserted has been added via arcpy.AddField_management and thus the values of the rows ...
2
votes
0answers
22 views

Where can I find more details about rasterFunctions?

I have published an Image service with ArcGIS Server 10, containing the results of an interpolation operation. The Image which is returned from the service is in greyscale. I wish to render it with ...
1
vote
1answer
42 views

HRESULT - IPersistStream.Save()

I have converted a VB6 project to C#, and there is one problem I cannot find documentation on. I am saving an IPropertySet to file by using IMemoryBlobStream and IPersistStream, as seen here: public ...
3
votes
1answer
39 views

How to make selection tool with 3 variables which depend on each other (ModelBuilder)?

I try to create model to selection feature by attribute with 3 variables which depend on each other but i don't know how. for example: variables: kat_1, kat_2, kat_3 Kat_1{ gastronomy, education, ...

1 2 3 4 5 39