Questions tagged [arcgis]

ArcGIS is a platform consisting of a group of geographic information system (GIS) software products produced by Esri. The GIS Stack Exchange should be considered for questions with this tag.

Overview

ArcGIS consists of products, versions, applications, license levels and components.

ArcGIS was first launched in 1999 and excepting server offerings is available on Microsoft Windows only. Prior to 1999 Esri had a number of different product lines (ArcView3, ArcInfo Workstation, MapObjects, ArcSDE) on Unix and Windows that were loosely integrated and sometimes incompatible. Many of these products can be interacted with via programming languages, such as VBA, .NET languages, and Python.


Tag usage

Consider whether the question is more suitable on Stack Overflow SE or GIS SE which has separate tags for its products and components e.g. arcgis-desktop, arcgis-server, arcpy, arcsde, etc

2794 questions
4
votes
0 answers

ArcGIS Rest API in C#. submitting the job to ConnectOriginsToDestinations service

I'm getting started with the online ArcGIS analysis services API. I've hit a dead-end with the connectOriginsToDestinations analysis task; even with a minimal request, I get a job failure with the response "Operation failed. Invalid URL (code =…
Mana
  • 41
  • 1
4
votes
2 answers

Get latitude & longitude from address geopandas

I have a csv of about 100 million logs. Where one of the column is address and I am trying to get latitude and longitude of the address. I want to try something like mentioned in the Solution , But the solution given is arcGIS and that is a…
Sitz Blogz
  • 1,061
  • 6
  • 30
  • 54
4
votes
2 answers

Checking a checkBox in .docx form with Python using docx module

I am attempting to fill out a word document form with Python 2.7's docx module. I can modify text elements just fine but I am having difficulty figuring out how to check a yes or no checkbox. How do I go about checking one the the checkboxes in the…
PMK
  • 267
  • 3
  • 11
4
votes
1 answer

union overlapping polygons until no overlap

I have a list of geometries(could be a point or polygon) and I need to union the geometries that overlap(or contained within another geometry) in to one geometry. Any ideas on how to do this efficiently using shapely? I believe I should be using…
Prash
  • 43
  • 1
  • 6
4
votes
1 answer

How to query DTED offline using ArcGIS .Net SDK?

Our application needs to do some elevation calculations (and is not connected to the internet), as a result we need to determine the highest elevation for a given polygon. How can we query DTED offline using ArcGIS .Net SDK? Here is the little…
4
votes
2 answers

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 another story). The best I can do so far is to add a…
Tom W
  • 211
  • 1
  • 3
  • 9
4
votes
1 answer

Leaflet js map only showing a few tiles

I'm trying to create an custom stationary map using the Leaflet JavaScript library and keep running into a major issue where most of the map tiles for the coordinates do not render. I'm defining & showing the map like so function initmap() { map…
CaffeinatedMike
  • 1,537
  • 2
  • 25
  • 57
4
votes
2 answers

Building ArcGIS with bower, node, grunt

I am struggling with setting up arcgis javascript api locally. Tried following https://developers.arcgis.com/javascript/latest/guide/get-api/index.html#using-bower-for-local-builds but no use. No help from sample application…
Jabran Saeed
  • 5,760
  • 3
  • 21
  • 37
4
votes
0 answers

Worldwind Render Order of Surface Shapes and Tactical Symbols

Essentially, I would like Surface Shapes to be rendered on top of Tactical Symbols by default. Here is the problem recreated in a Worldwind Example public class TestApp extends ApplicationTemplate { public static class AppFrame extends…
Steve
  • 981
  • 1
  • 8
  • 22
4
votes
1 answer

Python script called from ASP.NET runs fine in IIS Express but fails in local IIS

This might ostensibly seem like a duplicate of Python ArcGIS ArcPy RuntimeError: NotInitialized but this is different because that uses ArcGIS 10.0 and there were huge differences in later versions such as the 10.3 that I'm using that refers to…
Beebok
  • 385
  • 3
  • 12
4
votes
3 answers

referencing an amd module(arcgis) in webpack app

I'm building a react app with webpack and i need to incorporate arcgis maps into a react component. I have know idea how to bring this into my project. I've tried creating an arcgis directory with an index.js of the built javascript and trying to…
David
  • 10,418
  • 17
  • 72
  • 122
4
votes
2 answers

Can't Scroll in Dialog Fragment

I am trying to get a DialogFragment to popup and to show a scrollable TextView legend but it just cuts off the rest of the legend. I can't scroll through it or anything. I tried adding a ScrollView but it doesn't do anything. This is the screen that…
4
votes
1 answer

Shapefiles under 1000 features but ArcGIS Online not accepting it?

I have a couple of zipped shapefiles with around 100-150 features. I am trying to add them on ArcGIS Online (which accepts under 1000 features per shapefile) but it is unable to do so, indicating to me that the zipped shapefile is too big. I am not…
Toronto23
  • 327
  • 8
  • 20
4
votes
4 answers

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 it just me or anyone else having issues like this?
Pragnesh Patel
  • 1,444
  • 3
  • 23
  • 38
4
votes
2 answers

Is there a way to disable highlighting the boundaries when click a graphic object on the feature layer?

I have a feature layer, which click a graphic object, an info window pops up with a summary that include the data of other graphic objects with same "pond" name, the latest arcgis for javascript version adds a feature which highlights the boundary…