--
You received this message because you are subscribed to the Google Groups "weewx-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/ed011528-5b99-4e41-b77f-45fb6d435bdd%40googlegroups.com.
What I use isecho "hood river\n700,foot\n45\n-125\nmetric\n6\n\n\n" | python ./setup.py installNB: this worked for V3.x. Version 4 asks the user whether s/he wants to register the station, so you'd have to add that.
echo "hood river\n700,foot\n45\n-125\nmetric\n6\n\n\n" | python ./setup.py installNB: this worked for V3.x. Version 4 asks the user whether s/he wants to register the station, so you'd have to add that.
+ if defaultConfig:+ default_stn_info = {}+ default_stn_info['location'] = "My Little Town, Oregon"+ default_stn_info['altitude'] = [700, 'foot']+ default_stn_info['latitude'] = 45+ default_stn_info['longitude'] = -121+ default_stn_info['register_this_station'] = "false"+ default_stn_info['units'] = "us"+ return default_stn_info+
--
You received this message because you are subscribed to the Google Groups "weewx-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/6732c32d-6164-4796-a2e7-eeef2d691d80%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "weewx-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/ba541817-035c-4bab-97e8-371a3da08b5d%40googlegroups.com.
This worked for me:echo -e "hood river\n700, foot\n45\n-125\nn\nmetric\n3\n" | python3 ./setup.py installAdding new options to setup.py adds a LOT of complexity. Hence, the decision to get rid of it.-tk
You received this message because you are subscribed to a topic in the Google Groups "weewx-development" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-development/hT3m5qKheeU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/CAPq0zEDezPQDrhoUSCjCe5rcPyRCLYkM0Cgaicu3D7Y-LCVpjA%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "weewx-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/3fec267f-89a8-48ea-8dde-b7df25e4c463%40googlegroups.com.
That's not so bad. Added in commit e83fcdfI simplified a bit, and tweaked here and there.Can you test?