|
POST
|
Actually the workaround I did was to use the select by attributes and then open the attributes in the selection menu and in the Attribute dialog box . Click at the layer name and then go down to the field and type that number....
... View more
05-30-2025
10:34 AM
|
0
|
0
|
1151
|
|
POST
|
So should I say or type it in as Replace($feature.SignSymbols, "I-", "22") ?
... View more
05-30-2025
10:03 AM
|
0
|
0
|
1179
|
|
POST
|
As I type the word Replace in the field using Calculate field to replace the I- to 255, however I get this error message. Has anyone went through this error and got it to fix ? I looked at the Text Functions on ArcGIS Arcade in the ESRI Developer exactly but do not know why... Maybe some of you can help me out...
... View more
05-30-2025
09:42 AM
|
0
|
4
|
1202
|
|
POST
|
Hi, I have a simple question to ask if there is a way around to do this to turn on or off a ArcGIS Map Service layer I have here. I pulled this layer from a ArcGIS Pro package I downloaded but it gives me a limit to do with it. It is a map server that has a Transportation state system. At the top of the layer is a Map Image Layer and then underneath is a Layer name that you can turn it on or off However, there is no Map Image Layer "Feature Layer" type to display symbology similar for the Map Image. So, my question is Is there a way around for me to turn off or on for each symbology to see Under other layers I have? Black line shows it is a state highway Red line shows a US Highway I only want to simply turn the symbology off or on to see with it and check with another overlay layer.
... View more
05-19-2025
10:13 AM
|
0
|
1
|
857
|
|
POST
|
I agree with KimOlliver to use FME. I don't know if there is a way around in ArcGIS Pro.
... View more
05-09-2025
11:44 AM
|
0
|
0
|
2206
|
|
POST
|
Another option you can do is copy the title and paste it and fix it.
... View more
05-09-2025
11:31 AM
|
0
|
0
|
5253
|
|
POST
|
Have you checked out the State of Arizona interactive map or folder map for that specific road ?
... View more
05-08-2025
08:38 AM
|
0
|
0
|
733
|
|
POST
|
Here I have a question about the Label Expression I am working on. I want to replace two CO- and E- with "" , but not sure HOW do I do for this method in the label expression. The field name I have is an Alias which is all the route names and when I look at the attributes table and found two that I wanted to replace with . The first one I use the replace with worked but not sure for the second one.. Replace([ALIAS],"CO-","") How do I add one more for the "E-" and replace with "" ?
... View more
05-07-2025
01:52 PM
|
0
|
2
|
1050
|
|
POST
|
I know it is kind of late to post but in the past ESRI always has their UC Map Gallery books... They have that now online https://mapgallery.esri.com/
... View more
04-29-2025
06:06 PM
|
0
|
0
|
1016
|
|
POST
|
I fixed it and it worked; however on line 2 which I am not sure about but I can see the Admin_Org has null and I don't know how to include it in the code ? def FindLabel ( [TRAIL_NO], [ADMIN_ORG], [MANAGING_ORG], [TRAIL_NAME],[NATIONAL_TRAIL_DESIGNATION]):
if [ADMIN_ORG].startswith('02'):
s='.'
if [ADMIN_ORG].startswith('0201'):
return [TRAIL_NO][2:]
else:
if [TRAIL_NO]:
return [TRAIL_NO]
else:
return "TRAIL_NO is null" Traceback (most recent call last): File "<expression>", line 1, in <module> File "<string>", line 2, in FindLabel AttributeError: 'NoneType' object has no attribute 'startswith' And here is the screenshot for the field name here is
... View more
04-22-2025
10:07 AM
|
0
|
1
|
1771
|
|
POST
|
Hi, Before I dive into more detail. I have an issue with a layer that somebody wrote this expression into this labeling expression. I have the Drawing Alert that tells me . I am trying to understand this and I am not sure how to fix it. The layer I had was from an original layer came from the upper management and they did this for the whole country and I had to use it to clipped it to smaller area for our project. So when you clipped the layer , I believe some of the expression did not work in the label expression. So here is the Expression from the Labeling section is what I have here from an original layer: def FindLabel ( [TRAIL_NO], [ADMIN_ORG], [MANAGING_ORG], [TRAIL_NAME], [NATIONAL_TRAIL_DESIGNATION] ):
if [ADMIN_ORG].startswith('02'):
s='.'
if [ADMIN_ORG].startswith('0201'):
return [TRAIL_NO] [2:]
else:
return [TRAIL_NO].split(s,1)[0]
elif [ADMIN_ORG].startswith('0919') or [ADMIN_ORG] .startswith('0922') or [ADMIN_ORG] .startswith('0903')or [ADMIN_ORG] .startswith('0913'):
return [TRAIL_NO] [2:]
elif [ADMIN_ORG] .startswith('0909') or [ADMIN_ORG] .startswith('0907'):
return [TRAIL_NO] [2:].replace('-','')
elif [ADMIN_ORG] .startswith('0904'):
return [TRAIL_NO] [1:]
elif [ADMIN_ORG].startswith('0915'):
return [TRAIL_NO][4:]
elif [ADMIN_ORG].startswith('08'):
if [ADMIN_ORG].startswith('0805') or [ADMIN_ORG].startswith('0810'):
return [TRAIL_NO].replace('TRBS','').replace('TR','')[1:]
else:
return [TRAIL_NO].replace('TRBS','').replace('TR','')
elif [ADMIN_ORG].startswith('04'):
if [ADMIN_ORG].startswith('0419'):
return [TRAIL_NO] [1:]
elif [ADMIN_ORG].startswith('0402'):
return [TRAIL_NO][:3]
elif [MANAGING_ORG].startswith('0402'):
return [TRAIL_NO][:3]
elif [ADMIN_ORG].startswith('040702') and [TRAIL_NO].startswith('32000.'):
return [TRAIL_NO].replace('32000','').replace('.','')
elif [ADMIN_ORG].startswith('040702'):
return [TRAIL_NO][2:]
else:
return [TRAIL_NO][1:]
elif [ADMIN_ORG].startswith('0303'):
return [TRAIL_NO] [2:]
elif [MANAGING_ORG].startswith('031204'):
return [TRAIL_NO].replace('MT-','')
else:
return [TRAIL_NO].lstrip("0").replace('.', '-').replace('TER-','').replace('TRD','') I have the clippped layer here and I have looked into the attributes and I can see some of the split it mention in the expression and yes I can see some of the numbers like this 157.2 or "Name of trail".456 The Problem is the error that tells me Traceback (most recent call last): File "<expression>", line 1, in <module> File "<string>", line 7, in FindLabel AttributeError: 'NoneType' object has no attribute 'split' I am clueless here and I am not sure what the line 7 is and I am not sure where to find it. Please excuse my grammar here. I am deaf and I try my best to understand how it works and it will help me to understand better down in the road should I came up the same thing in the future... Thanks GIS friends ! I am in the VDI, Citrix, and ArcGIS Pro 3.3.4.
... View more
04-18-2025
10:15 AM
|
0
|
6
|
1849
|
|
POST
|
Thank you ! I open the current project and at the Project Level Current Settings did show where my current project is. It shows the list of the Name, Location, Home Folder, Default geodatabase and Default toolbox. I appreciate your explaining and I give you thumbs-up !
... View more
04-14-2025
07:58 AM
|
0
|
0
|
962
|
|
POST
|
What is the difference between the Current Settings vs General settings for Starting ArcGIS Pro project in the Options ? For the Current Settings , it did not provide much details ; however, the General does provide details on how to save your projects on your local or network computer ? Here is the screen shot for the "Change settings for the current project"
... View more
04-11-2025
07:35 AM
|
0
|
2
|
1048
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | 04-08-2026 10:11 AM | |
| 1 | 09-01-2022 03:43 PM | |
| 1 | 09-28-2020 09:34 AM | |
| 2 | 09-24-2025 09:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|