Finding Nocturnal Species for the WI BBA

I did finally get on the board with some nocturnal birding, in the form of displaying American woodcocks at dusk! Meanwhile, some of my friends relocated the American three-toed woodpecker(s) today at the spot down the road from where I was looking (i.e. the traditional spot). The original finder had them back there a few […]

Continue reading..Finding Nocturnal Species for the WI BBA

How to Debug OPS (Other Peoples’ Scripts): Part 2

My first example was basically just running the script until it crashed, conveniently having the problematic values assigned to the variables at the end of the run. From there, I could run lines individually outside of the functions that were crashing, and see where it hung up. This time, I’ll actually use the debugger. Amazingly, […]

Continue reading..How to Debug OPS (Other Peoples’ Scripts): Part 2

How to Debug OPS (Other Peoples’ Scripts): Part 1

This is the Python edition. I’m working with a script called StellaR.py and when I run it for myself with the Stella model I’m working with, I get this… Traceback (most recent call last):   File “StellaR.py”, line 717, in <module>     main()   File “StellaR.py”, line 541, in main     convT=convWrite(conv)   […]

Continue reading..How to Debug OPS (Other Peoples’ Scripts): Part 1