Tagged Questions
ArcGIS is a suite consisting of a group of geographic information system (GIS) software products produced by ESRI. Many of these products can be interacted with via programming langauges, such as VBA, .NET languages, and Python.
15
votes
9answers
4k views
Heightmap generation algorithm?
I was looking around the internet and couldn't find a perfect algorithm for this particular problem:
Our customer have a set of points and weight data along with each point as can be demonstrated by ...
10
votes
7answers
1k views
Where do you get ArcGIS development questions answered?
Where do you have the most success getting your ArcGIS development questions answered?
ESRI forums?
Stack Overflow?
Google?
Mailing lists?
Blog posts?
ESRI documentation?
I can usually get answers ...
4
votes
2answers
137 views
Launching python subprocess has different behavior depending on launcher
I'm attempting to launch Python 2.5 from Python 2.6. The reason for this is a compiled library I'm trying to use (GDAL) isn't supported for the version of Python distributed with another program ...
4
votes
2answers
926 views
java gis library
What is the best/user friendly GIS/arcGIS Java library for basic academic assignment?
4
votes
3answers
389 views
unit test smell
I am trying to change my unit testing of ArcGIS, and start using mocks (I use rhino).
When I started to get into writing the tests, I noticed I have to start mocking a lot of objects, and stub a lot ...
3
votes
1answer
226 views
Intersect two layers and get resulting features
I have X layers on a map and I need to intersect chosen layers (two per time) and color resulting features.
I'm trying to get this code working
// get first feature (index 0)
...
3
votes
4answers
956 views
Which is the best ESRI ArcGIS component library to use with GWT?
We are currently designing a GIS intranet application using GWT and ESRI ArcGIS. We are looking at 2 client side Javascript libraries:
The ESRI Javascript API
Open Layers
The library will have to ...
3
votes
10answers
1k views
ESRI frameworks: java vs javascript
I'm about to develop a web mapping application with ESRI Products like ArcGIS Server and Image Server.
I can't find a good comparison between the Java Web ADF and the Javascript Framework. They're of ...
2
votes
1answer
299 views
wglUseFontBitmaps is not drawing on screen
I've posted this question in gis.stackexchange earlier but I'm not sure if that was in fact the right place to post it, since this is more of a coding/technical question. I'm attempting to draw a ...
2
votes
2answers
232 views
GDAL Raster Output
I'm trying to create a .tif file using GDAL in python. It's creating a file, but saying "no preview available" whenever I browse to it. Right now, I'm just trying to get it to make a copy of the ...
2
votes
1answer
392 views
Installing ArcGIS Server 10 in Ubuntu
Anyone who has the experience installing ArcGIS server 10 on Ubuntu 10.10. Is it possible doing that?
2
votes
2answers
510 views
Multithreading in ArcGIS with Python
I have a python script that works great when run by itself. Based on a hardcoded input directory it scans for all .mdb files and puts that into a list, then iterates through them all in a for loop. ...
2
votes
1answer
552 views
How do I add a shapefile in ArcGIS via python scripting?
I am trying to automate various tasks in ArcGIS Desktop (using ArcMap generally) with Python, and I keep needing a way to add a shape file to the current map. (And then do stuff to it, but that's ...
2
votes
3answers
2k views
is ARCGIS 10 very slow?
has anyone having problem with latest release of arcgis 10?
my services running on ags 10 is very slower than 9.3.1.
And Arcgis Desktop is Really slow which cause me to downgrade back to 9.3.1.
Is ...
2
votes
1answer
156 views
How to create variables from strings in arcobjects?
This hopefully is a simple question with a simple answer. If I have a list box or something that has a list of like 4 years (like 2006 through 2009), how do I programmatically make variables of these ...
2
votes
1answer
504 views
Script or automate feature class creation in ESRI/ArcSDE
I'm looking for info on how to write SQL scripts to automate the creation of a versioned feature class in ArcSDE I want to be able to automate the process itself as well as put the scripts under ...
2
votes
3answers
885 views
Need recommendation for ArcGIS Engine,ArcGIS Server and ArcSDE interview question
I am preparing for GIS interview.I am looking for good ArcGIS Engine,ArcGIS Server and ArcSDE interview questions. I just googled some,but the questions that I found are not that much detailed to the ...
2
votes
2answers
139 views
Is it possible to animate markers in ArcMap?
I'm completely new to ArcGIS and ArcMap, but someone suggested this program to me for a project I'm working on.
I would like to animate individual entities on a map, and was wondering if it is ...
2
votes
3answers
965 views
GIS: When and why to use ArcObjects over GDAL programming to work with ArcGIS rasters and vectors?
Im just starting off with GDAL + python to support operations that cannot be done with ArcGIS python geoprocessing scripting. Mainly I am doing spatial modeling/analysis/editing of raster and vector ...
2
votes
3answers
2k views
ArcGIS Development.Java vs .Net(C#)
I'm a computer scientist and i've been working with Java mostly to develop applications.
I just been hired in a company that makes projects with ArcGIS.
The company has hired na electrical engineer to ...
2
votes
2answers
987 views
Error editing a blob field in ArcGIS Engine
I have a GIS layer backed by a MSSQL db. The features on the layer have, say, one field of type esriFieldTypeString and one of type esriFieldTypeBlob. I can edit the string field just fine, but, when ...
2
votes
4answers
748 views
What silverlight dev must learn to use arcGIS silverlight?
I am already familiar with Silverlight programming but not have any experience with GIS.
my role as silverlight developer is only to display existing GIS data.
If you guys have any experience with ...
2
votes
4answers
6k views
How can I call a javascript function from inside a method?
I am inside of...
public class bgchange : IMapServerDropDownBoxAction
{
void IServerAction.ServerAction(ToolbarItemInfo info)
{
Some code...
and after "some code" I want to trigger
...
1
vote
0answers
29 views
Android - How to know if mapView is properly loaded?
I am having trouble in detecting if mapview is loaded in my android map appication. In OnCreate method, when I assign the map URL, I want to know if any problem occured. Problems may occur due to my ...
1
vote
1answer
75 views
How to pick up the information for the nearest associated polygon to points using R?
I'm figuring out how to do a Intersection (Spatial Join) between point and polygons from shapefiles. My idea is to get the closest points and those points that match completely inside the polygons. In ...
1
vote
2answers
68 views
Convert latitude and longitude into esri arcGIS MapPoint
I am having trouble in converting the latitude and longitude values into android esri arcGIS map Point. Here's my code to get latitude and longitude values from GPS coordinates:
LocationManager lm;
...
1
vote
2answers
54 views
How to combine attributes of like features in Python
I have a text file containing Street and Page attributes. Streets may appear in more than one page, here's an example of the way my text file looks now:
Street Page
StreetA 3
StreetA 4
...
1
vote
0answers
43 views
How do I progammatically publish a Map Service Definition to an ArcGIS Server in ArcGIS 10 or 10.1?
I have an C# desktop application that needs to allow the user to specify an ArcGIS map service definition (.MSD) for publishing to a server.
How can I programmatically publish a given .MSD to an ...
1
vote
3answers
117 views
Join .dbf to .shp -Then Calculate Fields Script - ERROR handling, script quits on no join
I have created a simple script to join a .dbf to a .shp, then calculate a few fields. The script works great, but if for some reason there is no join, I get the following error which shuts down the ...
1
vote
1answer
26 views
querying arcgis and getting results sorted by distance from some point
Using the REST or javascript api, does anyone know how to get results back sorted by distance from a point? I'm doing someething like this:
...
1
vote
1answer
129 views
How extract waypoint route from bing maps directions and convert it to a shapefile
I was wondering if it is possible to extract each waypoint route in bing maps directions (example of waypoint routes below)
http://dl.dropbox.com/u/15387358/bing%20route.jpg
The only way i know how ...
1
vote
2answers
131 views
Connection GeoDB to ASP.Net web application
I have a GeoDB which has the extension .gdb. Is there any one who has tried to connect a GeoDB using C# with using ArcGIS SDK?
1
vote
2answers
123 views
How can I creating complexType variables in Coldfusion for use in SOAP request arguments?
UPDATE
After perusing the docs some more I noticed that I left out the FieldArray and PropertyArray keys. So I no longer get the type mismatch error, but the SOAP request is still not right.
Here ...
1
vote
0answers
60 views
Problem with TArcReaderControl
I have ArcGIS 10 installed and had previously developed a customised application using the free ArcReader Active-X control (ArcReaderControl). In Delphi 2010 & the previous version of ArcGIS, ...
1
vote
1answer
52 views
MapResource object cast problem
I have an 'ArcGIS Server Internet' resource into my MapResourceManager called "MapResourceItem0" and is the third of other two resources.
I need to get the features of the layers in this resource, ...
1
vote
2answers
129 views
find the min distances from one polygon to other polygons in a layer?
I tried to figure out how to find the min distances from one polygon to other polygons in a layer (a layer consists of many polygons) of ArcGIS. More specific, I was wondering if it is possible to run ...
1
vote
1answer
78 views
Efficient (spatial) Network Neighbors?
I would like to identify the Kth order neighbors of an edge on a network, specifically the neighbors of a large set of streets. For example, I have a street that I'm interested in looking at, call ...
1
vote
1answer
68 views
To transfer attributes from a polygon feature class (that contains line feature ) to the line feature class using python script
Has anyone tried to trasfer attributes from a polygon feature class to a line feature class using python script. I have done it with Spatialjoin and Identity, but the output is often another feature ...
1
vote
1answer
441 views
VB6 to VB.NET conversion - System.Collections.IEnumerator
I have a fairly lengthly block of code that I'm trying to convert from VB6 to VB.NET. The ArcObjects GIS code basically looks at a table and groups a bunch of GIS layers together and adds them to the ...
1
vote
1answer
136 views
Which Silverlight ArcGIS SDK link to use?
I am confused as to which ArcGIS SDK I should use for developing a ArcGIS map-based Silverlight application.
I just signed up and downloaded the SDK isntaller from ESRI:
...
1
vote
2answers
80 views
Convert raw bytes to a type in .NET
I have the raw bytes of a COM object (ESRI IPOINT) in a SQL DB. I want to somehow force the casting of it to an IPOINT. I tried IPoint p = object as IPOINT which failed. Is there some hacky way to ...
1
vote
3answers
1k views
Issues with wmode=“opaque” and issues with wmmode=“window”
Ok so first I was having 2 issues with default wmode of "window". My web page navigation menus would go under my flex/flash app. The other issue was when scrolling in the flash app the whole page ...
1
vote
0answers
101 views
Pushpins in ArcGIS map with Javascript
What would be the way to add a pushpin on a map so that when clicked, it will show a detail popup on top of the pushpin?
Thanks.
1
vote
1answer
715 views
How to retrive the zoomed location on mouse click, in ArcGIS?
I am using ArcGIS map to display the location and allow the user to zoom and drag to their destination. When they click the Save button, I want to save the co-ordinates and in my postback I want to ...
1
vote
2answers
294 views
Is Arcgis possible for android?
I want to develop Arcgis for android and web service, but I don't know it has an API yet?
If it has, it's possible to mark(like google map API) on a map which i get lat and long which collected on my ...
1
vote
1answer
937 views
How do you remove a schema lock on a dbf file accessed using ArcObjects?
I am creating a custom geoprocessing tool for ArcGIS Desktop/Server. During the tool execution, I create a dbf file and access its contents using a cursor. The lock on this file remains after the ...
1
vote
1answer
378 views
ARCGIS flex overlay floor plan png
We have floor plans of a building in the DB in PNG format.
We am using arcGIS flex api. We want to build something like
http://www.laudontech.com/officeplans/
How can we load my building floor plan ...
1
vote
2answers
1k views
Adding Values to an Array and getting distinct values using Python
I have python code below that will loop through a table and print out values within a particular column. What is not shown is the form in which the user selects a Feature Layer. Once the Feature ...
1
vote
1answer
596 views
Problem making attribute table of raster in ArcGIS
I have a python script that makes an attribute table of a raster. This runs through all the rasters that I have which are floats, converts them to ints, then makes an attribute table.
On the first 3 ...
1
vote
2answers
304 views
Updating a For Each Loop in Python
The below python code takes a list of files and zips them up. The only File Geodatabase (File based database) that I need to have is called "Data" so how can I modify the loop to only include the ...