Questions tagged [arcmap]

ArcMap is a piece of software within the ArcGIS suite. It is utilized for cartographic production as well as geospatial analysis.

Overview

ArcMap is used primarily to view, edit, create, and analyze geospatial data. ArcMap allows the user to explore data within a data set, symbolize features accordingly, and create maps.

Tag usage

Consider whether the question is more suitable on Stack Overflow SE or GIS SE

373 questions
1
vote
1 answer

Extra black area after exporting image from Google Earth Engine to ArcMap

When a .tiff image exported from GEE opened in ArcMap, why the extra black background appears along with the required geometry? Using this code for exporting to google drive: Export.image.toDrive({image: classified, description: 'GreenLand', region:…
Avaise99
  • 23
  • 3
1
vote
1 answer

In ESRI Arcade, is there a wildcard or a NOT LIKE function?

I am trying to find a wildcard function and not like in Arcade. I have tried to find a wildcard function. I tried *, $, %. I tried the 'NOT LIKE' AND <>. Maybe I am writing this all wrong? This script here says if the entry is not AY, return…
1
vote
2 answers

Can I accomplish this in an easier more fluid way? (in ArcPy)

For a project I am adding fields and then populating those fields with data already contained in the table. The adding fields is easy. arcpy.AddField_management("PLSSFirstDivision","TRS","TEXT","","",20)…
1
vote
1 answer

The command "esriRegasm.exe ..." exited with code -1. I can't build a project

I want to build the project to create a tool with ArcObjects in Visual Studio. I get this error: The command "esriRegasm.exe "...Project1.dll" /p:Desktop /s" exited with code -1. I use C#, Visual Studio 2015, ArcObjects 10.5, ArcMap 10.5. I looked…
Nolu
  • 11
  • 2
1
vote
1 answer

Joining shapefiles in python and changing their projected coordinate system and outputting shapefile

I am trying, in python 3.7, to join two files along a common attribute (ZCTA Zip Code number) and output a shapefile that contains the join along ZCTA and adds attribute Manufa_EMP (Manufacturing employment) and then change the projected coordinate…
1
vote
1 answer

In ArcGIS Pro, how do I create a line between two points that follows the curvature of another shapefile?

I am fairly new to ArcGIS Pro, and I want to create a line that follows the curvature of a river shapefile and lays between two points. Attached below is a screenshot. I tried using the "Points to Line" tool, but that just gave me a straight line…
Nate
  • 19
  • 1
  • 2
1
vote
0 answers

Splitting a String and updating field in ArcMap using UpdateCursor

I am trying to sort through a field in Arcmap, split all records and then update the field with the new values using the UpdateCursor. I have a python script that works, but I can't get it to work using updateCursor. The following is the python…
1
vote
0 answers

Not able to use tkinter in ArcMap

I am using Tkinter in ArcMap Add-in python code. Tkinter UI is opening well but then it closes or crashes ArcMap. I am using the below code. import arcpy import pythonaddins from Tkinter import * import tkMessageBox class ButtonClass1(object): …
1
vote
1 answer

Calculating area without overlap of polygon

I have a question. I am trying to calculate the area of the following layer (see picture) intersect area I used the intersection tool to find the intersection between the layer of 4 overlapping buffers with another polygon (transformed from raster…
Mike
  • 13
  • 2
1
vote
0 answers

Different output results from arcmap and python

This is my first question and also my first trial to use python coding for image processing. I am trying to calculate different vegetation indices from UAV images using python to fasten the process. The problem that when I compared the output files…
GeeNewUser
  • 11
  • 1
1
vote
0 answers

Understanding required for inserting "esri/dijit/analysis/AggregatePoints" or related esri digit widget functions for arcgis javascript

Currently, my code looks a little something like this and my map displays fine from my desktop without the inclusion of "esri/dijit/analysis/AggregatePoints" or related widgets. Is there a specific position to insert the widget to ensure that my map…
1
vote
1 answer

Using python to query keywords in a arcmap layer

I currently have a data set of latitude and longitude points plotted in ArcMap. These coordinates were imported from excel and have a "notes" column. I was wondering if there was any way to query select words from this column to change the symbol on…
1
vote
1 answer

EOL stops python on Calculate Field

Would anyone be able to help me modify these scripts to ignore the error and continue running ? I just need to figure out how to make the script skip over these errors and finish the rest of the lines. Here is the full Python script: # Import…
dr.parcel
  • 33
  • 1
  • 6
1
vote
1 answer

Locating a substring in Field Calculator using ArcGIS Pro

I have what should be a fairly straightforward operation failing in ArcGIS Pro 2.4, and cannot for the life of me work out why. If the field "assettype" contains a portion of the search string, then set the value of assettype_groupup to the value I…
anakaine
  • 1,188
  • 2
  • 14
  • 30
1
vote
1 answer

How do I remove part of a file base name and attach it to the end of the file name?

I have multiple feature classes in a file, and I need to reproject them based on a specified file. I am writing an Arcpy script (will be used to create a tool in Arcmap) to do this. How do I remove the beginning of the file name and add it onto the…
ihb
  • 292
  • 9
  • 27