Visualizing Repetitive Temporal Data in GIS

325
1
11-21-2019 05:17 AM
PayneRingling
New Contributor III

We have a road closure map for the city (link below). The planning department updates this with any planned road closures. We have a farmer's market that shuts down a street once a week every week for the year. Is there anyway to create an entry in that GIS layer with a repetitive time frame without making 52 entries, one for each week of the year? This layer is created in AGOL.

http://sarasota.maps.arcgis.com/apps/TimeAware/index.html?appid=72b1531477c2493eaabe85a29f372d0d 

0 Kudos
1 Reply
by Anonymous User
Not applicable

Hi Payne,

Is the end goal to symbolize the closure as it's shown in the app?

Assuming the day of the week is the same each time, you might be able to use an Arcade function. Something like this may do the trick:

//Values range from 0-6 where Sunday is 0 and Saturday is 6

var Farmers = $feature.DayClosed
var dayOfWeek = Weekday(Now())

iif (Farmers == dayOfWeek, "Closed", "Open")

Hope this helps,

-Peter

0 Kudos