Select to view content in your preferred language

Creating a visual representation tied with multiple data points tied to one geographic value

173
2
01-29-2025 05:50 PM
Labels (2)
MayaAlmoussa
Emerging Contributor

Hi all! I want to create multiple data points over time on a map (like Sliding Timer Effect). One of the columns in the data table has location "codes" that correspond to a specific location on the map. The other columns are "Percent illness" for the years 2017, 2018, 2019 and "Years" . Each location code corresponds to a "percent illness" and "Year" value from 2017, 2018, 2019.  How can I tie data points from percent illness 2017 to the Year 2017, and then to the location code, data points from percent illness  2018 to Year 2018 and to the location codes, etc, then visualize changes over time? . For example: How can I create an animation on a map that shows the change from 52% in 2017 to 32% in 2018 in Location 1 (and the other locations simultaneously)? 

Location codePercent Illness 2017YearPercent Illness 2018Year
152%201732%2018
245%201747%2018
363%201775%2018
0 Kudos
2 Replies
DavidPike
MVP Notable Contributor

It's not in quite the right format to be time-enabled yet.

Each year and location/area will need its own row in the table. as below.

Something like Transpose Fields https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/transpose-fields.htm or wrangle it in Excel, Pandas etc.

You'll also need to join a geometry or X and Y to each location field.

 

Location Code Year Percent Illness

1201752%
1201832%
2201745%
2201847%
3201763%
3201875%
0 Kudos
MayaAlmoussa
Emerging Contributor

Thank you! I am going to try that! 

0 Kudos