POST
|
Good afternoon, I have two layers in my map created by filtering the base data in ArcGIS pro when publishing. I'd like to make it easier for the users to filter the two layers but for now, it seems they have to select each in the table of contents and apply the attribute filter. I have also tried to symbolize and group the data in Map Viewer using one layer, but that has not resulted in what I'd like to achieve as Map Viewer does not make it easy to symbolize on multiple attributes. Let me know if you have any insights on how to filter two layers at once in Field Maps. Thank you, Mele
... View more
4 weeks ago
|
1
|
1
|
245
|
IDEA
|
I just ran in to the need to be able to filter two layers. I found this thread and was wondering if there has been any updates on its progress. We have two layers in the map where our Fire Department must select their station and shift and filter the layers. I would be nice from a user standpoint if they only had to filter once. Thank you for any updates on this, Mele
... View more
a month ago
|
0
|
0
|
176
|
POST
|
Hello, I have a group in our organization and have invited users from outside organizations. I do not see a way to see who has a pending invite to the group. Is this possible? If so, how? Thank you, Mele
... View more
05-12-2025
03:17 PM
|
0
|
0
|
120
|
BLOG
|
Esri Community’s "How They Helped Me" series features members sharing meaningful professional accomplishments and how those were made possible by assistance from others on the platform. These stories illuminate the often unrecognized threads of connection between Esri Community users and the impact that knowledge sharing can have on others around the world.
Each year, I submit a map to the Esri User Conference. This year’s map focuses on September 12th, 2024, in Scottsdale, Arizona when the Scottsdale Fire Department had to battle two large fires that broke out within 25 minutes of each other.
On an average day, the Scottsdale Fire Department handles over 100 calls but due to the size and scope of the fires that day, the regional Automatic Aid System ensured uninterrupted life-saving services and emergency response during a time of high demand of equipment and personnel placed on Scottsdale Fire.
Scottsdale Fire Department is a core member agency of a regional Automatic Aid dispatch system. Managed by the Phoenix and Mesa Regional Dispatch Centers, this system spans more than 2,000 square miles of the Phoenix metropolitan area, surrounding cities and counties, and connects over two dozen fire departments.
Automatic Aid eliminates municipal boundaries and provides for an orderly and reliable incident command structure. This enables dispatchers to send the closest available unit with the right resources for each emergency incident. This system saves critical response time for 9-1-1 calls. It also allows dispatchers to deploy additional resources to cover large incidents and to provide coverage when multiple emergency events occur.
The regional automatic aid system responded with equipment and personnel from all over the Phoenix metro area and helped cover the large fires as well as 30 other calls for service while the Scottsdale Fire Department was stretched thin.
Using ArcGIS Pro, I mapped the responses using Origin-Destination links showing the home station of the equipment and personnel and the incident they responded to.
My challenge was that I wanted to make my map showing the origin-destination links on that day look more like 3-D flight paths as I thought this effect might not only look more cartographically appealing but also add some gravity to how the Automatic Aid system works to bring in resources from all over the area served by the system.
I spent a lot of time experimenting and struggling with the 3-D depictions of the origin-destination links until I found a post on Esri Community titled, “How to draw a 3D arc (flight path) in ArcGIS Pro?” created by @NickShannon from 2018 that showed an image exactly like what I was trying to do.
3D arc (flight path)
This image gave me hope that what I was trying to do was possible. In the forum post there was some mention about creating the desired effect manually but I was not able to conceptually follow the process and wanted to do it programmatically if possible.
3D arc discussion
Further down in the post, in 2024, another member, @HeathAnderson said he was looking into the original question. Seeing his post got me encouraged that there might be a solution to what I was looking to do and I asked Heath if he had found a solution. He said that he thought he had and shared this image of how he accomplished what I was trying to.
3-D arcs created by Heath Anderson
With this input from Heath, I was hopeful that I would soon be able to display the data the way I wanted. The next step was to see if he had any code that I could use, and Heath shared his entire Jupiter notebook showing what he had done to achieve the look I wanted.
I needed to work on the code a bit to get it to work for my situation, but Heath took me 90% of the way to where I wanted to be for my mapping efforts.
With the code he provided, I was able to create a 3-D path in an ArcGIS Pro Local Scene as shown below.
Scottsdale Fire Department Yearbook Image
My Esri UC poster is now complete and has been submitted. In addition to the Esri submission, the poster also has been entered in the GISCI 2025 map contest. The results have already paid dividends beyond my initial intentions. Our Fire Chief requested that the poster was shared with his peer groups. Also, the Scottsdale Fire Department PIO has included the above image in a yearbook.
Without the help of the Esri Community and Heath Anderson in particular, I would not have been able to create the impactful 3-D depictions of ArcGIS Pro origin-destination links.
If you are attending the 2025 Esri UC, look for the final product shown in the image. You can also look for it in the online map gallery.
The Final Esri UC Map Gallery Submission
Have a story about how someone in Esri Community provided help you needed to achieve a meaningful GIS accomplishment or overcome a notable challenge? Let us know by emailing esricommunity@esri.com. Our team would love to explore your story as a future How They Helped Me feature!
... View more
05-12-2025
07:01 AM
|
4
|
2
|
744
|
POST
|
@KoryKramer I was trying to install but I was not able to get to the early adopter link in this docment https://www.esri.com/content/dam/esrisites/en-us/media/products/arcgis-pro-issues-addressed/ai-assistant-pro.pdf How can I get access? Thank you
... View more
05-04-2025
06:48 AM
|
1
|
1
|
611
|
POST
|
This is how I was able to update the data via python #connect to GIS from arcgis.gis import GIS gis = GIS("https://website.maps.arcgis.com/", "UserName", "**********") #Get user that owns folder user = gis.users.get("UserName") #Get list of items list = user.items(folder='Open Data') for i in list: i.update(item_properties = {'accessInformation': "COS"}) Updating the accessinformation sets the updated date to today
... View more
04-15-2025
08:26 AM
|
0
|
0
|
162
|
POST
|
This is how I was able to update the data via python #connect to GIS from arcgis.gis import GIS gis = GIS("https://website.maps.arcgis.com/", "UserName", "**********") #Get user that owns folder user = gis.users.get("UserName") #Get list of items list = user.items(folder='Open Data') for i in list: i.update(item_properties = {'accessInformation': "COS"}) Updating the accessinformation sets the updated date to today
... View more
04-15-2025
08:25 AM
|
0
|
0
|
158
|
POST
|
Is there any scripts that 'touch' the open data layers to make them show a current last update date? I recall finding something years ago, but don't know where it is now. Thank you
... View more
04-08-2025
11:26 AM
|
0
|
0
|
175
|
POST
|
Good morning, Our Open Data portal shows the Date Updated when the last time our Hosted Feature Layers were updated and not the date of the data. I had Notebook at one time that would update this date to show our data is dynamically updated weekly but can't find it. Does anyone have a sample of how to update this value? We can't currently use editor tracking fields so I would like script that does it to show the users our data is updated frequently. Thank you
... View more
04-08-2025
09:57 AM
|
0
|
1
|
235
|
POST
|
Thank you Chris. I need to get the max of three data fields and create a definition query to limit the records. I tried using the AND but it doesn't return any records because the values in the date fields are different. One other caveat is that this is a Feature Class that will be edited. If it weren't, I'd probably create a query layer and use CASE in it, but CASE can't be used in a definition query from what I am seeing.
... View more
03-26-2025
08:49 AM
|
0
|
0
|
225
|
POST
|
Hello, I have three fields which contains dates in a SQL Geodatabase Feature Class. I want to create a definition query that evaluates the three fields and gets the records who have not been treated within the last six months using each of the fields to to determine the max value. I would do a CASE statement but that is not possible in Pro from what I am seeing. Any suggestions? Thank you, Mele
... View more
03-25-2025
03:51 PM
|
0
|
2
|
269
|
POST
|
ArcGIS Field Maps Ideas https://community.esri.com/t5/arcgis-field-maps-ideas/field-maps-make-attachments-mandatory-required-as/idi-p/1229073
... View more
03-21-2025
08:57 AM
|
0
|
0
|
171
|
POST
|
Greatly Needed Indeed!! We have a Hazardous Vegetation Program and pictures are a must to illustrate the issues found in the field. Is there an 'idea' for this? I would like to have this functionality by next year's program in the spring.
... View more
03-20-2025
04:18 PM
|
1
|
1
|
181
|
POST
|
@JeffSilberberg as RJ was describing, the issue seemed to be that we have a carryover and duplication of the call signs each day and GeoEvent Server didn't know which was the 'correct' one to use. I have been testing my GeoEvent Services since I received further info from RJ and things look good so far. I am testing it now as two active fire units in the City. The real test will be during our events, but I suspect that the clear out of call signs is the key for us each day.
... View more
03-20-2025
10:37 AM
|
0
|
0
|
307
|
Title | Kudos | Posted |
---|---|---|
1 | 4 weeks ago | |
4 | 05-12-2025 07:01 AM | |
1 | 05-04-2025 06:48 AM | |
1 | 03-20-2025 04:18 PM | |
1 | 11-22-2024 10:47 AM |
Online Status |
Offline
|
Date Last Visited |
yesterday
|