
New to the field of GIS and learning ArcGIS Pro and Python at the same time.
How does one change Type field based on Name field
Collected data using Field Maps. Add more options for Type after the data was collected.
Special was also added after the data collection process.
For the record "Al Anderson Park", I want Type to change to Park regardless of whats already inputted.
Also for "Al Anderson Park EX", change Special from <Null> to EX Raid
I have more than 100 points collected in my map and would rather have this processes automated some how.
Furthest I got was this code that works [ !LandmarkName!.replace("EX", "") ]
Tried other things that dont work cause im also new to python.
if "Park" in !LandmarkName!:
!LandmarkType!.replace(, "Park")
Version 2.9 if that matters