Individual stations can be edited in MySQL Workbench easily enough. However, a common scenario is that all stations need to be updated. There is a hook for this in mysql_tools.py (SQLObject.setAllStationsUpdate()) but that requires starting an ipython session and creating an SQLObject and remembering what the method name is.
So as a matter of convenience, we should make a resetAllStations.py script.
Individual stations can be edited in MySQL Workbench easily enough. However, a common scenario is that all stations need to be updated. There is a hook for this in
mysql_tools.py
(SQLObject.setAllStationsUpdate()
) but that requires starting anipython
session and creating anSQLObject
and remembering what the method name is.So as a matter of convenience, we should make a
resetAllStations.py
script.