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

Problems changing value of a text element in Esri Arcmap

I have a mxd file to print a report, it has a map and text elements, I'm trying to change a value of text element but I'm not able to do it. this is the code: import arcpy import os import datetime def Actualiza_Texto(nombre, valor): elementos =…
-1
votes
1 answer

Measuring the distance between points on arcGis

help me please, it is necessary to put a point on the map and measure the distance on arcGis
-1
votes
1 answer

Python - Parsing error SyntaxError: invalid syntax

I can't figure out what's wrong with the syntax in line 9 below. Help? Using Python in ArcMap. >>> for strName in rasterList: ... pRaster = arcpy.Raster(strName) ... pPoint = arcpy.Point(2256560.829028871, 908394.8188188977) ... if…
K. L.
  • 1
  • 1
  • 3
-1
votes
1 answer

Why isn't self working in my code

I'm writing some code to create a toolbar that edits a map in ArcMap and I'm having some issues with getting variable values from other functions inside other classes that I'm using. All the functions are predefined so I can't change the int…
user5451396
-1
votes
6 answers

clip analysis in arcpy

I have one shapefile that covers an entire city, and a list of shapefiles which are buffers in different places in the city. I want to clip the city with each buffer. I tried using ArcPy in Python but the code is not working. What am I doing…
Lira
  • 53
  • 2
  • 9
-1
votes
1 answer

Esri Javascript API census info popup and parks popup one map

Need some guidance here, I have two operational esri js maps that I want to combine to have two different popups. If I/we could somehow figure out a way to add the number of parks to the census popup that would work and not worry about the two…
Staley
  • 55
  • 2
  • 11
-1
votes
1 answer

Collect last word from varied length string for filtering, auto labeling and column population?

I have been looking and reading for a few days about how to collect the last word from a varied length string. I have found lots of postings about how to collect/split the last word, but none of the content I have read addresses varied length…
Robin
  • 49
  • 1
  • 1
  • 9
-1
votes
1 answer

how to increase processing speed while gaining data from a database?

we are creating a website which shows temperature datas (max temp, min temp, avg temp) of a month for a particular district within a country. For this purpose we have created a single database file which consists of all (raster) datas For each month…
-2
votes
1 answer

I'm trying to create ashapefile of x,y coordinates from a txt. file but am getting the following error

Traceback (most recent call last): File "C:\Users\Brett\Desktop\Jefferson_final.py", line 31, in point = arcpy.Point(coordinate[0],coordinate[1]) IndexError: list index out of range Here is my script import arcpy import fileinput import…
-2
votes
2 answers

Restart the loop if match file name doesn't exist

I have the following code and for some reason I can not go back and check for next FC name. This code work great before I added if "os.path.exists()" and if, all files exist in both folders. Please point out what is the problem. Thanks! import…
Koush
  • 1
-2
votes
3 answers

My Arcmap 10.3 icon missing

My Arcmap 10.3 does not have an icon on my desktop - I can't find how to add a shortcut to my bar and so I have to open older MXD files to get to the program. I have already tried finding it in the program files and there is no icon for the program…
-2
votes
2 answers

Passing a variable to Select By Attributes using a 'for' loop in Python

I'm trying to write a script using 'Select by Attribute' in ArcMAP. What I want to do is create a for loop that will pass a value to the Select by Attribute expression. I was thinking something along the lines of: (x=number of polygons in a…
-3
votes
1 answer

Export from .tif to .tif with another CRS

I write a code in python for processing some .tif files and put them to WGS 1984 Coordinate System. The problem is, when I run the code, it gave's me error and stop executing. I try to do this with arcpy.ProjectRaster_management for almost 100 .tif…
1 2 3
24
25