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
9
votes
1 answer

Why is my geopandas installation missing sjoin? AttributeError: 'GeoDataFrame' object has no attribute 'sjoin'

I need to use geopandas sjoin on a project. I have successfully created GeoDataFrame objects and used class methods readfile, crs and to_crs. However when it comes to using sjoin I am getting an error: AttributeError: 'GeoDataFrame' object has no…
clams
  • 91
  • 1
  • 3
9
votes
3 answers

Enhance performance of geopandas overlay(intersection)

I have two sets of shapefiles with polygons. One set of shapefile is just the US counties I'm interested in and this varies across firms and years. The other set of shapefile is the business area of firms and of course this varies across firms and…
Crystie
  • 385
  • 6
  • 12
9
votes
3 answers

How can I use Esri Arcgis Map in ReactJs Project?

I'm trying to use Esri map. To include map in my project, here is what I found: require([ "esri/map", "esri/dijit/Search", "esri/dijit/LocateButton", "esri/geometry/Point", "esri/symbols/SimpleFillSymbol", …
Muhammad Ateeq Azam
  • 1,009
  • 1
  • 12
  • 26
9
votes
2 answers

AngularJS + ArcGIS

I am trying to use ArcGIS JavaScript API inside an Angular application. As I see, it uses Dojo. So, I am trying to initialize ArcGIS from Angular directive like this: link: function (scope, element, attrs) { dojo.require('esri.map'); var…
Sergei Basharov
  • 51,276
  • 73
  • 200
  • 335
8
votes
2 answers

ArcGIS simple example dynamically rendering a marker

I am having a hard time trying to add a simple clickable marker to an ArcGIS, map purely using JavaScript. All of the ArcGIS Samples seem to get their marker and related popup information from the server. How can I achieve the same result with…
Langdon
  • 19,875
  • 18
  • 88
  • 107
8
votes
3 answers

Installing pip using ArcGIS-installed Python 2.7

I'm trying to install Scrapy for Python 2.7 on Windows 8.1 and I understand that I first need pip to be installed. Since I have Python installed through ArcGIS 10.2, I think that I need to install pip under C:\Python27\ArcGIS10.2\lib\site-packages.…
user3566911
  • 83
  • 1
  • 5
8
votes
2 answers

Converting geographic WGS 84 to Web Mercator 102100

I am trying to convert geographic coordinate system to Esri Webmercator, but when I do the conversion the resulted x and y have values of 0000003232112222… and 00000012665321…. This is very odd since coordinates as those do not exist. var positions…
user1564511
7
votes
1 answer

Output shapefile for the igraph network in R

Hello I have a network in R using the igraph library Vertices: 616 Edges: 6270 Directed: TRUE No graph attributes. Vertex attributes: name, Lat, Lon. Edge attributes: V3. How can I generate two shapefiles for the Vertices and the Edges using…
Seen
  • 4,054
  • 4
  • 37
  • 46
7
votes
2 answers

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 input file. Here's my…
Pat
  • 199
  • 1
  • 2
  • 7
7
votes
2 answers

Shape_area and ALAND AWATER in Tiger census data

What does Shape_area mean? I noticed that it is not the sum of Aland and Awater. What are the units of these three?
daydayup
  • 2,049
  • 5
  • 22
  • 47
7
votes
4 answers

UnsatisfiedLinkError (com.esri.core.runtime.LicenseImpl.nativeIsClientIdValid)

Error occurred in running app in device: java.lang.UnsatisfiedLinkError: Native method not found: com.esri.core.runtime.LicenseImpl.nativeIsClientIdValid:(Ljava/lang/String;)Z at…
kel
  • 820
  • 6
  • 11
7
votes
5 answers

java gis library

What is the best/user friendly GIS/arcGIS Java library for basic academic assignment?
Mark Fish
  • 79
  • 1
  • 4
7
votes
2 answers

Python: how to create a point shape-file from a text file

I'm writing a python code to read the points in a polygon shape-file and save them in a point shape file. So first I made a text file and stored the points' (x,y) in that .txt file. then I tried to make a point shape-file from the text file but it…
user2841098
  • 313
  • 5
  • 12
6
votes
6 answers

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; String towers; double lat; double longi; TextView…
user1111781
  • 133
  • 1
  • 5
6
votes
1 answer

Add Json Operational layers info on Arcgis map

I am trying to load operational layers data from the following JSON with no luck. So far I tried the following add it as a graphic layer by using graphicLayer = new esri.layers.GraphicsLayer(); graphicLayer.add(json); map.add(graphicLayer); tried…
DomincJune
  • 931
  • 9
  • 15