Seven volunteers from Socorro NM met up to install new metal trail signs on local BLM trails: Blue Canyon, Black Canyon, Descansos, Gramont, Dirt Wall, and one more.
For some signs we pounded in t-posts, and for others used existing t-posts.
Near the end of the project we enjoyed “burrito o’clock“, a tradition with Socorro volunteers.
A big thanks goes to the BLM Socorro Field Office, and all the volunteers.
In the previous post we learned how to automagically close short gaps in our trail network, and now we will develop a more refined way of adding longer road-walks without using a long and tedious list of rectangles to define import boundaries as in this post.
Our method involves importing a graph of the Gila that includes both trails and roads, with variable name GTR. With nodes node1 and node2, we find the shortest distance between these nodes in GTR
and then add that path to our original trails graph G. We choose node1 and node2 so that the shortest path between them is very likely to be the road we want to import, and not some alternate path. , and then import this path into our trail graph. The trail graph, G, and the road-and-trail graph GTR share the same node numbers, which is the unique OSMid for that location, which makes this method of selectively importing roads from GTR into G possible.
It is fairly easy to look at our map and come up with a list of roads we want to include. (I use the CalTopo website map because its user interface is rather good for finding longitudes and latitudes, and measuring distances.)
We also do the mind-the-gap routine from the previous post after adding the longer roadwalks, because these additions fix some of the short gaps for free. We also have refactored our mind-the-gap code to utilize what we learned in this post, so it runs much faster and makes fewer errors in closing gaps.
The resulting trail graph is now pleasingly connected.
I might make one or two tweaks, but the graph finally looks in good shape. What happens when we run our gradient fuzz search routine now? Actually, the results are not very improved. My current theory is that my trail search algorithm does not correctly handle the case where two 4-nodes are neighbors with each other. With this better-connected graph, there are more 4-nodes, and a higher probability of 4-nodes as neighbors. I will attempt to fix that edge-case next time.
Six NMVFO volunteers met at Cowles near the eastern edge of the Pecos Wilderness to trim willow plugs that had been planted along the Pecos River as part of a restoration project earlier in the year. Our briefing is that the young willows were too tall, and needed to be cut back to survive their first winter.
We planted some of the trimmed cuttings closer to the water in case they might root and survive.