
Dec 2021 Snow Event
Due to the many hills and geography of Bremerton, snow and ice can make for especially dangerous driving conditions. The city has a mixture of snow plows, sand spreaders, and anti-ice fluid equipped vehicles. However citizens had no way of determining actual road conditions. I was tasked with designing and implementing a software solution to provide realtime information on the condition of the roads.
To address this issue, I built SWARM (Snowy Weather Assessment and Response Map) a predominately back-end application in Node.JS. We equipped the vehicles with GPS units that are wired to the vehicles electronic system. These units broadcast the current location and sensor state every 15 seconds. My system collates the sensor data, draws vehicle paths based on the individual location, and then sends the finalized results to a geospatial server. Lastly the server provides the sensor paths, based on treatment type and duration elapsed from treatment to a map front-end.
The company that provided the sensor/gps units had reliability issues. As many as 40% of data requests were being dropped or returning 500 errors. Because the service was unreliable, my system was setup to make requests with an exponential back-off so that as much data could be displayed as possible. Missing data would be added as it became available. This proved to be a robust approach and the system was successful in overcoming limitations in source data availability.