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

Using R to obtain slope raster from DEM GRID raster

After some extensive googling, I wasn't able to find my answer (first time I couldn't surmount the issue by looking at others questions/answers). I am new to asking questions, so forgive any missteps. I am attempting to perform what ArcGIS or QGIS…
0
votes
2 answers

Extracting Shapefile or geojson from ArcGIS web map

Need help! I am trying to get zoning by-law information as geojson or shapefile from this ArcGIS web map site. Usually, the esri2geojson method would work fine 90% of the time even when there's a token involved. However, this web map seems to…
0
votes
1 answer

Basemap - can't find .shp file

I'm following the accepted answer from here: https://gis.stackexchange.com/questions/198530/get-lat-long-of-us-cities-and-plot-them-on-a-map-using-matplotlib-and-basemap Those 2 lines: map =…
Binyamin Even
  • 3,318
  • 1
  • 18
  • 45
0
votes
2 answers

How can I select layer by location AND attributes in ArcMap?

I have a dataset (i.e. a shapefile) containing spatial location data (coordinates) and elevation data as well as other attribute fields. I want to select points which have at least 200m vertical separation (i.e. are at least 200m apart on the…
cjrwil
  • 1
  • 1
0
votes
3 answers

How to run the Calculate Field using ArcPy?

I have an issue in executing the Calculate field command in Python (ArcPy). I couldn't find any related resources or helpful descriptions regarding this. I hope somebody could help me with this. inFeatures = r"H:\Python…
Pgm-Mastr
  • 27
  • 7
0
votes
1 answer

Upgrading from Esri.Arcgis.Client 10.2.x to Arcgis.Runtime.100.x

Hello fellow arcgis developers. I am about to migrate from old Arcgis.Client .Net to Arcgis.Runtime .Net. And looking at the documentation I cant find what corresponding namespaces they are now using in the Arcgis.Runtime 100.x. Now when running…
codemoonger
  • 613
  • 3
  • 11
  • 22
0
votes
1 answer

JavaScript only shows map if the code is inside the head

I'm in a project that I will need to show a map of "arcgis", can not be the map of google Maps, on the site of "arcgis" there is an example to show the code with javascript, here's the link:…
Ronald
  • 1
0
votes
1 answer

Latidue/Longitude at cursor about 10 to 20 meters off?

I am using the ArcGIS QT/C++ api and I found that when I grab the lat/lng from my cursor position (or just any point for that matter) is about 10 to 20 meters off. I think I might be missing a SpacialReference somewhere,... I just don't know…
Flip Vernooij
  • 889
  • 6
  • 15
0
votes
1 answer

What format input geometry needs to have to be able search by geometry/bbox?

I'm trying to filter data here, by specific USA state - https://hydro.nationalmap.gov/arcgis/rest/services/nhd/MapServer/12/query However, I'm not sure how to use the "Input Geometry" field (in which format geometry needs to be). Could someone send…
0
votes
1 answer

Return all the attributes(fields) in a feature layer for a PopupTemplate - ArcGis Javascript

Is there a way to return all the attributes(fields) in a feature layer for a PopupTemplate, without declaring all of them in the fieldInfos object in Angular? .ts const template = { title: "{NAME} in {COUNTY}", content: , …
Harsha W
  • 3,162
  • 5
  • 43
  • 77
0
votes
0 answers

ArcGIS Esri Map - Console Error - Encountered error when fetching tile

I'm currently loading an ArcGIS Esri Web Map which is having some layers in my Angular application. But after loading the map successfully, I'm getting more than 20 console errors as below. What could be the issue for getting the below console…
Harsha W
  • 3,162
  • 5
  • 43
  • 77
0
votes
1 answer

The ArcGIS API failed to load

I have downloaded the npm i --save esri-loader @esri/react-arcgis but why is it i cant load the map? did i miss something? import React from 'react'; import Map from '../../component/Map/Map.js' const HomePage = () => { return (
Roger
  • 293
  • 1
  • 4
  • 15
0
votes
1 answer

Feed location data to the Esri Map and display locations on Esri Map as pinpoints

I want to pass some location data(latitude, longitude, etc..) of some states in the US to the ArcGIS Esri map, and display those locations in the Esri map as pinpoints (like Google maps). Currently, my Angular code is as below and I couldn't find…
Harsha W
  • 3,162
  • 5
  • 43
  • 77
0
votes
1 answer

Get Json/GeoJson data of a structure

I'm doing a project drawing 3D models using ArcgisJS. I want to ask that is there any web or tools that can help to get Json/GeoJson data such as coordinates of a point, line, surface or polygon of a structure (like maybe buildings). Thank you.
Rye
  • 27
  • 6
0
votes
1 answer

How to display full extent of a webmap using ArcGIS Javascript API?

I'm using ArcGIS Javascript API 4.20 to retrieve a webmap from ArcGIS online, and I'm able to load and display it by providing its ID, using the following simple script: import MapView from…