├── .circleci └── config.yml ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── create-station.sh ├── install_ext.sh └── run.sh ├── conf-fragments └── logging-stdout.conf ├── dist ├── weewx-3.6.1 │ └── weewx-3.6.1 │ │ ├── LICENSE.txt │ │ ├── PKG-INFO │ │ ├── README │ │ ├── bin │ │ ├── daemon.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── alarm.py │ │ │ ├── lowBattery.py │ │ │ └── xsearch.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ │ ├── docs │ │ ├── apt-get.html │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ │ ├── extensions │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── skin.conf │ │ │ └── xstats.html.tmpl │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ │ └── weewx.conf ├── weewx-3.6.2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── alarm.py │ │ │ ├── lowBattery.py │ │ │ └── xsearch.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── config.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── extensions │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── skin.conf │ │ │ └── xstats.html.tmpl │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ ├── weewx.conf │ └── weewx_3.6.2-1_all.deb ├── weewx-3.7.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── stats.py │ │ └── transfer_db.py │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-3.7.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── stats.pyc │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-3.8.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── junk2.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-3.8.2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── statistics-a.inc~ │ │ │ ├── statistics-b.inc~ │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-3.9.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── changes.txt~ │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ ├── weewx_docs.css │ │ │ └── weewx_docs.css~ │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── usersguide.htm~ │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-3.9.2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── apt-get.htm │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── jquery.tocify.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── weewx_docs.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.toc-1.1.4.min.js │ │ │ ├── jquery.tocify-1.9.0.js │ │ │ ├── jquery.tocify-1.9.0.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── build │ │ ├── lib │ │ │ ├── daemon.py │ │ │ ├── schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── wview.py │ │ │ │ └── wview_extended.py │ │ │ ├── six.py │ │ │ ├── user │ │ │ │ ├── __init__.py │ │ │ │ └── extensions.py │ │ │ ├── weecfg │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── database.py │ │ │ │ └── extension.py │ │ │ ├── weedb │ │ │ │ ├── __init__.py │ │ │ │ ├── mysql.py │ │ │ │ └── sqlite.py │ │ │ ├── weeimport │ │ │ │ ├── __init__.py │ │ │ │ ├── csvimport.py │ │ │ │ ├── cumulusimport.py │ │ │ │ ├── wdimport.py │ │ │ │ ├── weeimport.py │ │ │ │ └── wuimport.py │ │ │ ├── weeplot │ │ │ │ ├── __init__.py │ │ │ │ ├── genplot.py │ │ │ │ └── utilities.py │ │ │ ├── weeutil │ │ │ │ ├── Moon.py │ │ │ │ ├── Sun.py │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── ftpupload.py │ │ │ │ ├── log.py │ │ │ │ ├── logger.py │ │ │ │ ├── rsyncupload.py │ │ │ │ ├── timediff.py │ │ │ │ └── weeutil.py │ │ │ └── weewx │ │ │ │ ├── __init__.py │ │ │ │ ├── accum.py │ │ │ │ ├── almanac.py │ │ │ │ ├── cheetahgenerator.py │ │ │ │ ├── crc16.py │ │ │ │ ├── defaults.py │ │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ │ ├── engine.py │ │ │ │ ├── filegenerator.py │ │ │ │ ├── imagegenerator.py │ │ │ │ ├── manager.py │ │ │ │ ├── qc.py │ │ │ │ ├── reportengine.py │ │ │ │ ├── restx.py │ │ │ │ ├── station.py │ │ │ │ ├── tags.py │ │ │ │ ├── units.py │ │ │ │ ├── uwxutils.py │ │ │ │ ├── wxengine.py │ │ │ │ ├── wxformulas.py │ │ │ │ ├── wxmanager.py │ │ │ │ ├── wxservices.py │ │ │ │ └── xtypes.py │ │ └── scripts-3.7 │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0a9 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ └── wxservices.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ └── utilities.htm │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── junk2.py │ │ │ ├── junk3.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b11 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b12 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── junk2.py │ │ │ ├── junk3.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b14 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b16 │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b18 │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b3 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── junk2.py │ │ │ ├── junk3.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b4 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── junk2.py │ │ │ ├── junk3.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-YYYY-MM.txt.tmpl │ │ │ └── NOAA-YYYY.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b5 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── pipenv │ │ │ ├── Pipfile │ │ │ └── Pipfile.lock │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.0.0b6 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ └── wview.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.1.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.1.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── junk.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.10.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ ├── yeardiff.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cn.conf │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.10.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ ├── yeardiff.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cn.conf │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.2.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ └── wview_extended.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.3.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.3.0b1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr200.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.3.0b2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.3.0b3 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr200.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.4.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.5.0a1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.5.0a3 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.5.0b2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.5.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── mobile.css │ │ │ ├── mobile.html.tmpl │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0a3 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ └── en.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ └── en.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ └── en.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0a4 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ └── en.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ └── en.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ └── en.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0b1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ ├── titlebar.inc │ │ │ └── totals.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0b2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ ├── titlebar.inc │ │ │ └── totals.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0b3 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0b6 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.0b7 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── stats.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ └── nl.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ └── nl.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.6.2 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── changes.txt~ │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── upgrading.htm~ │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── en.conf~ │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ ├── titlebar.inc │ │ │ └── titlebar.inc~ │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── en.conf~ │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── week.html.tmpl~ │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.7.0 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.8.0 │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ ├── yeardiff.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.9.0b1 │ ├── LICENSE.txt │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ ├── yeardiff.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cn.conf │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf ├── weewx-4.9.1 │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README │ ├── README.md │ ├── bin │ │ ├── daemon.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── wview.py │ │ │ ├── wview_extended.py │ │ │ └── wview_small.py │ │ ├── six.py │ │ ├── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ │ ├── wee_config │ │ ├── wee_database │ │ ├── wee_debug │ │ ├── wee_device │ │ ├── wee_extension │ │ ├── wee_import │ │ ├── wee_reports │ │ ├── weecfg │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database.py │ │ │ └── extension.py │ │ ├── weedb │ │ │ ├── __init__.py │ │ │ ├── mysql.py │ │ │ └── sqlite.py │ │ ├── weeimport │ │ │ ├── __init__.py │ │ │ ├── csvimport.py │ │ │ ├── cumulusimport.py │ │ │ ├── wdimport.py │ │ │ ├── weathercatimport.py │ │ │ ├── weeimport.py │ │ │ └── wuimport.py │ │ ├── weeplot │ │ │ ├── __init__.py │ │ │ ├── genplot.py │ │ │ └── utilities.py │ │ ├── weeutil │ │ │ ├── Moon.py │ │ │ ├── Sun.py │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── ftpupload.py │ │ │ ├── log.py │ │ │ ├── logger.py │ │ │ ├── rsyncupload.py │ │ │ ├── timediff.py │ │ │ └── weeutil.py │ │ ├── weewx.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ ├── weewx │ │ │ ├── __init__.py │ │ │ ├── accum.py │ │ │ ├── almanac.py │ │ │ ├── cheetahgenerator.py │ │ │ ├── crc16.py │ │ │ ├── defaults.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── acurite.py │ │ │ │ ├── cc3000.py │ │ │ │ ├── fousb.py │ │ │ │ ├── simulator.py │ │ │ │ ├── te923.py │ │ │ │ ├── ultimeter.py │ │ │ │ ├── vantage.py │ │ │ │ ├── wmr100.py │ │ │ │ ├── wmr300.py │ │ │ │ ├── wmr9x8.py │ │ │ │ ├── ws1.py │ │ │ │ ├── ws23xx.py │ │ │ │ └── ws28xx.py │ │ │ ├── engine.py │ │ │ ├── filegenerator.py │ │ │ ├── imagegenerator.py │ │ │ ├── manager.py │ │ │ ├── qc.py │ │ │ ├── reportengine.py │ │ │ ├── restx.py │ │ │ ├── station.py │ │ │ ├── tags.py │ │ │ ├── units.py │ │ │ ├── uwxutils.py │ │ │ ├── wxengine.py │ │ │ ├── wxformulas.py │ │ │ ├── wxmanager.py │ │ │ ├── wxservices.py │ │ │ ├── wxxtypes.py │ │ │ └── xtypes.py │ │ ├── weewxd │ │ └── wunderfixer │ ├── docs │ │ ├── accum.md │ │ ├── changes.txt │ │ ├── copyright.htm │ │ ├── css │ │ │ ├── tocbot-4.12.0.css │ │ │ ├── tocbot-4.3.1.css │ │ │ └── weewx_ui.css │ │ ├── customizing.htm │ │ ├── debian.htm │ │ ├── devnotes.htm │ │ ├── examples │ │ │ └── tag.htm │ │ ├── hardware.htm │ │ ├── images │ │ │ ├── antialias.gif │ │ │ ├── day-gap-not-shown.png │ │ │ ├── day-gap-showing.png │ │ │ ├── daycompare.png │ │ │ ├── daytemp_with_avg.png │ │ │ ├── dayvaporp.png │ │ │ ├── daywindvec.png │ │ │ ├── favicon.png │ │ │ ├── ferrites.jpg │ │ │ ├── funky_degree.png │ │ │ ├── image_parts.png │ │ │ ├── image_parts.xcf │ │ │ ├── logo-apple.png │ │ │ ├── logo-centos.png │ │ │ ├── logo-debian.png │ │ │ ├── logo-fedora.png │ │ │ ├── logo-linux.png │ │ │ ├── logo-mint.png │ │ │ ├── logo-opensuse.png │ │ │ ├── logo-pypi.svg │ │ │ ├── logo-redhat.png │ │ │ ├── logo-rpi.png │ │ │ ├── logo-suse.png │ │ │ ├── logo-ubuntu.png │ │ │ ├── logo-weewx.png │ │ │ ├── pipeline.png │ │ │ ├── sample_monthrain.png │ │ │ ├── sample_monthtempdew.png │ │ │ ├── weekgustoverlay.png │ │ │ ├── weektempdew.png │ │ │ ├── yeardiff.png │ │ │ └── yearhilow.png │ │ ├── js │ │ │ ├── cash.js │ │ │ ├── cash.min.js │ │ │ ├── tocbot-4.12.0.js │ │ │ ├── tocbot-4.12.0.min.js │ │ │ ├── tocbot-4.3.1.js │ │ │ ├── tocbot-4.3.1.min.js │ │ │ └── weewx.js │ │ ├── logging.md │ │ ├── macos.htm │ │ ├── readme.htm │ │ ├── redhat.htm │ │ ├── series_tags.md │ │ ├── setup.htm │ │ ├── sle.html │ │ ├── suse.htm │ │ ├── upgrading.htm │ │ ├── usersguide.htm │ │ ├── utilities.htm │ │ └── xtypes.md │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.txt │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── seven_day.py │ │ ├── tests │ │ │ └── test_vaporpressure.py │ │ ├── transfer_db.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── setup.cfg │ ├── setup.py │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cn.conf │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ └── th.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ ├── conf-available │ │ │ │ └── weewx.conf │ │ │ └── conf.d │ │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx-multi │ │ │ ├── weewx.bsd │ │ │ ├── weewx.debian │ │ │ ├── weewx.freebsd │ │ │ ├── weewx.lsb │ │ │ ├── weewx.redhat │ │ │ └── weewx.suse │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── scripts │ │ │ ├── wee_config │ │ │ ├── wee_database │ │ │ ├── wee_debug │ │ │ ├── wee_device │ │ │ ├── wee_extension │ │ │ ├── wee_import │ │ │ ├── wee_reports │ │ │ ├── weewxd │ │ │ └── wunderfixer │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── systemd │ │ │ └── weewx.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ ├── acurite.rules │ │ │ ├── cc3000.rules │ │ │ ├── fousb.rules │ │ │ ├── te923.rules │ │ │ ├── vantage.rules │ │ │ ├── weewx.rules │ │ │ ├── wmr100.rules │ │ │ ├── wmr300.rules │ │ │ └── ws28xx.rules │ └── weewx.conf └── weewx-5.0.2 │ ├── CODE_SUMMARY.txt │ ├── DEV_NOTES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.md │ ├── bin │ ├── weectl │ └── weewxd │ ├── docs_src │ ├── changes.md │ ├── copyright.md │ ├── css │ │ └── weewx_docs.css │ ├── custom │ │ ├── cheetah-generator.md │ │ ├── custom-reports.md │ │ ├── database.md │ │ ├── derived.md │ │ ├── drivers.md │ │ ├── extensions.md │ │ ├── image-generator.md │ │ ├── introduction.md │ │ ├── localization.md │ │ ├── multiple-bindings.md │ │ ├── report-scheduling.md │ │ ├── service-engine.md │ │ ├── sle.md │ │ └── units.md │ ├── devnotes.md │ ├── examples │ │ └── tag.htm │ ├── hardware │ │ ├── acurite.md │ │ ├── cc3000.md │ │ ├── drivers.md │ │ ├── fousb.md │ │ ├── te923.md │ │ ├── ultimeter.md │ │ ├── vantage.md │ │ ├── wmr100.md │ │ ├── wmr300.md │ │ ├── wmr9x8.md │ │ ├── ws1.md │ │ ├── ws23xx.md │ │ └── ws28xx.md │ ├── images │ │ ├── antialias.gif │ │ ├── day-gap-not-shown.png │ │ ├── day-gap-showing.png │ │ ├── daycompare.png │ │ ├── daytemp_with_avg.png │ │ ├── dayvaporp.png │ │ ├── daywindvec.png │ │ ├── favicon.png │ │ ├── ferrites.jpg │ │ ├── funky_degree.png │ │ ├── image_parts.png │ │ ├── image_parts.xcf │ │ ├── logo-apple.png │ │ ├── logo-centos.png │ │ ├── logo-debian.png │ │ ├── logo-fedora.png │ │ ├── logo-linux.png │ │ ├── logo-mint.png │ │ ├── logo-opensuse.png │ │ ├── logo-pypi.svg │ │ ├── logo-redhat.png │ │ ├── logo-rpi.png │ │ ├── logo-suse.png │ │ ├── logo-ubuntu.png │ │ ├── logo-weewx.png │ │ ├── pipeline.png │ │ ├── sample_monthrain.png │ │ ├── sample_monthtempdew.png │ │ ├── weekgustoverlay.png │ │ ├── weektempdew.png │ │ ├── yeardiff.png │ │ └── yearhilow.png │ ├── index.md │ ├── quickstarts │ │ ├── debian.md │ │ ├── git.md │ │ ├── index.md │ │ ├── pip.md │ │ ├── redhat.md │ │ └── suse.md │ ├── reference │ │ ├── aggtypes.md │ │ ├── durations.md │ │ ├── skin-options │ │ │ ├── almanac.md │ │ │ ├── cheetahgenerator.md │ │ │ ├── copygenerator.md │ │ │ ├── extras.md │ │ │ ├── generators.md │ │ │ ├── imagegenerator.md │ │ │ ├── introduction.md │ │ │ ├── labels.md │ │ │ ├── texts.md │ │ │ └── units.md │ │ ├── units.md │ │ ├── valuehelper.md │ │ ├── valuetuple.md │ │ └── weewx-options │ │ │ ├── data-bindings.md │ │ │ ├── database-types.md │ │ │ ├── databases.md │ │ │ ├── engine.md │ │ │ ├── general.md │ │ │ ├── introduction.md │ │ │ ├── stations.md │ │ │ ├── stdarchive.md │ │ │ ├── stdcalibrate.md │ │ │ ├── stdconvert.md │ │ │ ├── stdqc.md │ │ │ ├── stdreport.md │ │ │ ├── stdrestful.md │ │ │ ├── stdtimesynch.md │ │ │ └── stdwxcalculate.md │ ├── upgrade.md │ ├── usersguide │ │ ├── backup.md │ │ ├── installing.md │ │ ├── introduction.md │ │ ├── monitoring.md │ │ ├── mysql-mariadb.md │ │ ├── running.md │ │ ├── troubleshooting │ │ │ ├── hardware.md │ │ │ ├── meteo.md │ │ │ ├── software.md │ │ │ └── what-to-do.md │ │ ├── webserver.md │ │ └── where.md │ └── utilities │ │ ├── weectl-about.md │ │ ├── weectl-database.md │ │ ├── weectl-debug.md │ │ ├── weectl-device.md │ │ ├── weectl-extension.md │ │ ├── weectl-import-about.md │ │ ├── weectl-import-common-opt.md │ │ ├── weectl-import-config-opt.md │ │ ├── weectl-import-csv.md │ │ ├── weectl-import-cumulus.md │ │ ├── weectl-import-troubleshoot.md │ │ ├── weectl-import-wd.md │ │ ├── weectl-import-weathercat.md │ │ ├── weectl-import-wu.md │ │ ├── weectl-report.md │ │ ├── weectl-station.md │ │ └── weewxd.md │ ├── makefile │ ├── mkdocs.yml │ ├── pkg │ ├── changelog.el │ ├── changelog.suse │ ├── debian │ │ ├── README │ │ ├── changelog │ │ ├── compat │ │ ├── conffiles │ │ ├── config │ │ ├── control │ │ ├── copyright │ │ ├── postinst │ │ ├── postrm │ │ ├── preinst │ │ ├── prerm │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── templates │ │ └── weewx.lintian-overrides │ ├── etc │ │ ├── systemd │ │ │ └── system │ │ │ │ ├── weewx.service │ │ │ │ └── weewx@.service │ │ └── udev │ │ │ └── rules.d │ │ │ └── weewx.rules │ ├── index-apt.html │ ├── index-suse.html │ ├── index-yum.html │ ├── mkchangelog.pl │ ├── rpmlint.el │ ├── rpmlint.suse │ ├── weewx-el.repo │ ├── weewx-el7.repo │ ├── weewx-el8.repo │ ├── weewx-el9.repo │ ├── weewx-python2.list │ ├── weewx-python3.list │ ├── weewx-suse.repo │ ├── weewx-suse12.repo │ ├── weewx-suse15.repo │ └── weewx.spec.in │ ├── poetry.lock │ ├── pyproject.toml │ └── src │ ├── schemas │ ├── __init__.py │ ├── wview.py │ ├── wview_extended.py │ └── wview_small.py │ ├── weecfg │ ├── __init__.py │ ├── database.py │ ├── extension.py │ ├── tests │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── weewx25_expected.conf │ │ │ ├── weewx26_expected.conf │ │ │ ├── weewx30_expected.conf │ │ │ ├── weewx32_expected.conf │ │ │ ├── weewx36_expected.conf │ │ │ ├── weewx39_expected.conf │ │ │ ├── weewx40_expected.conf │ │ │ ├── weewx42_expected.conf │ │ │ ├── weewx43_expected.conf │ │ │ └── weewx43_user_expected.conf │ │ ├── pmon.tar │ │ ├── pmon.tgz │ │ ├── pmon.zip │ │ ├── test_config.py │ │ ├── test_upgrade_config.py │ │ ├── weewx20.conf │ │ ├── weewx20_user.conf │ │ ├── weewx25.conf │ │ ├── weewx27.conf │ │ ├── weewx30.conf │ │ ├── weewx32.conf │ │ ├── weewx38.conf │ │ ├── weewx39.conf │ │ ├── weewx41.conf │ │ └── weewx42.conf │ └── update_config.py │ ├── weectl.py │ ├── weectllib │ ├── __init__.py │ ├── database_actions.py │ ├── database_cmd.py │ ├── debug_actions.py │ ├── debug_cmd.py │ ├── device_actions.py │ ├── device_cmd.py │ ├── extension_cmd.py │ ├── import_actions.py │ ├── import_cmd.py │ ├── report_actions.py │ ├── report_cmd.py │ ├── station_actions.py │ ├── station_cmd.py │ └── tests │ │ ├── test_station_actions.py │ │ └── test_weectllib.py │ ├── weedb │ ├── NOTES.md │ ├── __init__.py │ ├── mysql.py │ ├── sqlite.py │ └── tests │ │ ├── __init__.py │ │ ├── check_mysql.py │ │ ├── check_sqlite.py │ │ ├── setup_mysql.sh │ │ ├── test_errors.py │ │ └── test_weedb.py │ ├── weeimport │ ├── __init__.py │ ├── csvimport.py │ ├── cumulusimport.py │ ├── wdimport.py │ ├── weathercatimport.py │ ├── weeimport.py │ └── wuimport.py │ ├── weeplot │ ├── __init__.py │ ├── genplot.py │ ├── tests │ │ ├── __init__.py │ │ └── test_utilities.py │ └── utilities.py │ ├── weeutil │ ├── Moon.py │ ├── Sun.py │ ├── __init__.py │ ├── config.py │ ├── ftpupload.py │ ├── log.py │ ├── logger.py │ ├── printer.py │ ├── rsyncupload.py │ ├── startup.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_sun.py │ │ └── test_weeutil.py │ └── weeutil.py │ ├── weewx │ ├── __init__.py │ ├── accum.py │ ├── almanac.py │ ├── cheetahgenerator.py │ ├── crc16.py │ ├── daemon.py │ ├── defaults.py │ ├── drivers │ │ ├── __init__.py │ │ ├── acurite.py │ │ ├── cc3000.py │ │ ├── fousb.py │ │ ├── simulator.py │ │ ├── te923.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_ultimeter.py │ │ ├── ultimeter.py │ │ ├── vantage.py │ │ ├── wmr100.py │ │ ├── wmr300.py │ │ ├── wmr9x8.py │ │ ├── ws1.py │ │ ├── ws23xx.py │ │ └── ws28xx.py │ ├── engine.py │ ├── filegenerator.py │ ├── imagegenerator.py │ ├── manager.py │ ├── qc.py │ ├── reportengine.py │ ├── restx.py │ ├── station.py │ ├── tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── expected │ │ │ └── StandardTest │ │ │ │ ├── NOAA │ │ │ │ ├── NOAA-2010-01.txt │ │ │ │ ├── NOAA-2010-02.txt │ │ │ │ ├── NOAA-2010-03.txt │ │ │ │ ├── NOAA-2010-04.txt │ │ │ │ ├── NOAA-2010-05.txt │ │ │ │ ├── NOAA-2010-06.txt │ │ │ │ ├── NOAA-2010-07.txt │ │ │ │ ├── NOAA-2010-08.txt │ │ │ │ ├── NOAA-2010-09.txt │ │ │ │ └── NOAA-2010.txt │ │ │ │ ├── almanac.html │ │ │ │ ├── byhour.txt │ │ │ │ ├── byrecord.txt │ │ │ │ ├── byspan.txt │ │ │ │ ├── index.html │ │ │ │ ├── metric │ │ │ │ ├── NOAA │ │ │ │ │ ├── NOAA-2010-01.txt │ │ │ │ │ ├── NOAA-2010-02.txt │ │ │ │ │ ├── NOAA-2010-03.txt │ │ │ │ │ ├── NOAA-2010-04.txt │ │ │ │ │ ├── NOAA-2010-05.txt │ │ │ │ │ ├── NOAA-2010-06.txt │ │ │ │ │ ├── NOAA-2010-07.txt │ │ │ │ │ ├── NOAA-2010-08.txt │ │ │ │ │ ├── NOAA-2010-09.txt │ │ │ │ │ └── NOAA-2010.txt │ │ │ │ ├── byhour.txt │ │ │ │ ├── byrecord.txt │ │ │ │ ├── byspan.txt │ │ │ │ ├── index.html │ │ │ │ └── series.html │ │ │ │ └── series.html │ │ ├── gen_fake_data.py │ │ ├── restful.md │ │ ├── simgen.conf │ │ ├── stopper.py │ │ ├── test_accum.py │ │ ├── test_aggregate.py │ │ ├── test_almanac.py │ │ ├── test_cheetah.py │ │ ├── test_daily.py │ │ ├── test_database.py │ │ ├── test_engine.py │ │ ├── test_manager.py │ │ ├── test_reportengine.py │ │ ├── test_restx.py │ │ ├── test_series.py │ │ ├── test_skins │ │ │ └── StandardTest │ │ │ │ ├── NOAA │ │ │ │ ├── almanac.html.tmpl │ │ │ │ ├── byhour.txt.tmpl │ │ │ │ ├── byrecord.txt.tmpl │ │ │ │ ├── byspan.txt.tmpl │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ └── en.conf │ │ │ │ ├── series.html.tmpl │ │ │ │ └── skin.conf │ │ ├── test_templates.py │ │ ├── test_units.py │ │ ├── test_wxformulas.py │ │ ├── test_wxxtypes.py │ │ ├── test_xtypes.py │ │ ├── testgen.conf │ │ └── tst_schema.py │ ├── units.py │ ├── uwxutils.py │ ├── wxengine.py │ ├── wxformulas.py │ ├── wxmanager.py │ ├── wxservices.py │ ├── wxxtypes.py │ └── xtypes.py │ ├── weewx_data │ ├── __init__.py │ ├── bin │ │ └── user │ │ │ ├── __init__.py │ │ │ └── extensions.py │ ├── examples │ │ ├── alarm.py │ │ ├── basic │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.md │ │ │ └── skins │ │ │ │ └── Basic │ │ │ │ ├── basic.css │ │ │ │ ├── current.inc │ │ │ │ ├── favicon.ico │ │ │ │ ├── hilo.inc │ │ │ │ ├── index.html.tmpl │ │ │ │ ├── lang │ │ │ │ ├── en.conf │ │ │ │ └── fr.conf │ │ │ │ └── skin.conf │ │ ├── colorize │ │ │ ├── colorize_1.py │ │ │ ├── colorize_2.py │ │ │ └── colorize_3.py │ │ ├── fileparse │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── fileparse.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ └── readme.md │ │ ├── lowBattery.py │ │ ├── mem.py │ │ ├── pmon │ │ │ ├── bin │ │ │ │ └── user │ │ │ │ │ └── pmon.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.md │ │ │ └── skins │ │ │ │ └── pmon │ │ │ │ ├── index.html.tmpl │ │ │ │ └── skin.conf │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_vaporpressure.py │ │ ├── vaporpressure.py │ │ └── xstats │ │ │ ├── bin │ │ │ └── user │ │ │ │ └── xstats.py │ │ │ ├── changelog │ │ │ ├── install.py │ │ │ ├── readme.txt │ │ │ └── skins │ │ │ └── xstats │ │ │ ├── index.html.tmpl │ │ │ └── skin.conf │ ├── scripts │ │ └── setup-daemon.sh │ ├── skins │ │ ├── Ftp │ │ │ └── skin.conf │ │ ├── Mobile │ │ │ ├── favicon.ico │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── mobile.css │ │ │ └── skin.conf │ │ ├── Rsync │ │ │ └── skin.conf │ │ ├── Seasons │ │ │ ├── NOAA │ │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── about.inc │ │ │ ├── analytics.inc │ │ │ ├── celestial.html.tmpl │ │ │ ├── celestial.inc │ │ │ ├── current.inc │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── Kanit-Bold.ttf │ │ │ │ ├── Kanit-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans.woff │ │ │ │ ├── OpenSans.woff2 │ │ │ │ └── license.txt │ │ │ ├── hilo.inc │ │ │ ├── identifier.inc │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── cz.conf │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── es.conf │ │ │ │ ├── fr.conf │ │ │ │ ├── gr.conf │ │ │ │ ├── it.conf │ │ │ │ ├── nl.conf │ │ │ │ ├── no.conf │ │ │ │ ├── th.conf │ │ │ │ └── zh.conf │ │ │ ├── map.inc │ │ │ ├── radar.inc │ │ │ ├── rss.xml.tmpl │ │ │ ├── satellite.inc │ │ │ ├── seasons.css │ │ │ ├── seasons.js │ │ │ ├── sensors.inc │ │ │ ├── skin.conf │ │ │ ├── statistics.html.tmpl │ │ │ ├── statistics.inc │ │ │ ├── sunmoon.inc │ │ │ ├── tabular.html.tmpl │ │ │ ├── telemetry.html.tmpl │ │ │ └── titlebar.inc │ │ ├── Smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── favicon.ico │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ │ ├── de.conf │ │ │ │ ├── en.conf │ │ │ │ ├── nl.conf │ │ │ │ └── no.conf │ │ │ ├── rain.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── temp.html.tmpl │ │ │ └── wind.html.tmpl │ │ └── Standard │ │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ │ ├── RSS │ │ │ └── weewx_rss.xml.tmpl │ │ │ ├── backgrounds │ │ │ ├── band.gif │ │ │ ├── butterfly.jpg │ │ │ ├── drops.gif │ │ │ ├── flower.jpg │ │ │ ├── leaf.jpg │ │ │ └── night.gif │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ └── DejaVuSansMono-Bold.ttf │ │ │ ├── index.html.tmpl │ │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── fr.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ │ ├── month.html.tmpl │ │ │ ├── skin.conf │ │ │ ├── smartphone │ │ │ ├── barometer.html.tmpl │ │ │ ├── custom.js │ │ │ ├── humidity.html.tmpl │ │ │ ├── icons │ │ │ │ ├── icon_ipad_x1.png │ │ │ │ ├── icon_ipad_x2.png │ │ │ │ ├── icon_iphone_x1.png │ │ │ │ └── icon_iphone_x2.png │ │ │ ├── index.html.tmpl │ │ │ ├── radar.html.tmpl │ │ │ ├── rain.html.tmpl │ │ │ ├── temp_outside.html.tmpl │ │ │ └── wind.html.tmpl │ │ │ ├── week.html.tmpl │ │ │ ├── weewx.css │ │ │ └── year.html.tmpl │ ├── util │ │ ├── apache │ │ │ └── weewx.conf │ │ ├── default │ │ │ └── weewx │ │ ├── i18n │ │ │ └── i18n-report │ │ ├── import │ │ │ ├── csv-example.conf │ │ │ ├── cumulus-example.conf │ │ │ ├── wd-example.conf │ │ │ ├── weathercat-example.conf │ │ │ └── wu-example.conf │ │ ├── init.d │ │ │ ├── weewx │ │ │ ├── weewx-multi │ │ │ └── weewx.bsd │ │ ├── launchd │ │ │ └── com.weewx.weewxd.plist │ │ ├── logrotate.d │ │ │ └── weewx │ │ ├── logwatch │ │ │ ├── conf │ │ │ │ ├── logfiles │ │ │ │ │ └── weewx.conf │ │ │ │ └── services │ │ │ │ │ └── weewx.conf │ │ │ └── scripts │ │ │ │ └── services │ │ │ │ └── weewx │ │ ├── newsyslog.d │ │ │ └── weewx.conf │ │ ├── nginx │ │ │ └── weewx.conf │ │ ├── rsyslog.d │ │ │ └── weewx.conf │ │ ├── solaris │ │ │ └── weewx-smf.xml │ │ ├── syslog.d │ │ │ └── weewx.conf │ │ ├── systemd │ │ │ ├── weewx.service │ │ │ └── weewx@.service │ │ ├── tmpfiles.d │ │ │ └── weewx.conf │ │ └── udev │ │ │ └── rules.d │ │ │ └── weewx.rules │ └── weewx.conf │ └── weewxd.py ├── doug_docker_weewx_logging_config.txt ├── doug_dockerfile.txt ├── examples └── mounts │ ├── archive │ └── weewx.sdb │ ├── conf │ └── weewx.conf │ ├── skins │ ├── Belchertown │ │ ├── about.inc │ │ ├── footer.html.tmpl │ │ └── graphs.conf │ ├── Ftp │ │ └── skin.conf │ ├── Highcharts_Belchertown │ │ ├── json │ │ │ ├── day.json.tmpl │ │ │ ├── month.json.tmpl │ │ │ ├── week.json.tmpl │ │ │ └── year.json.tmpl │ │ └── skin.conf │ ├── Mobile │ │ ├── favicon.ico │ │ ├── index.html.tmpl │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ ├── mobile.css │ │ └── skin.conf │ ├── Rsync │ │ └── skin.conf │ ├── Seasons │ │ ├── NOAA │ │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ │ └── NOAA-%Y.txt.tmpl │ │ ├── about.inc │ │ ├── analytics.inc │ │ ├── celestial.html.tmpl │ │ ├── celestial.inc │ │ ├── current.inc │ │ ├── favicon.ico │ │ ├── font │ │ │ ├── Kanit-Bold.ttf │ │ │ ├── Kanit-Regular.ttf │ │ │ ├── OFL.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans.woff │ │ │ ├── OpenSans.woff2 │ │ │ └── license.txt │ │ ├── hilo.inc │ │ ├── identifier.inc │ │ ├── index.html.tmpl │ │ ├── lang │ │ │ ├── cz.conf │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── es.conf │ │ │ ├── fr.conf │ │ │ ├── gr.conf │ │ │ ├── it.conf │ │ │ ├── nl.conf │ │ │ ├── no.conf │ │ │ └── th.conf │ │ ├── map.inc │ │ ├── radar.inc │ │ ├── rss.xml.tmpl │ │ ├── satellite.inc │ │ ├── seasons.css │ │ ├── seasons.js │ │ ├── sensors.inc │ │ ├── skin.conf │ │ ├── statistics.html.tmpl │ │ ├── statistics.inc │ │ ├── sunmoon.inc │ │ ├── tabular.html.tmpl │ │ ├── telemetry.html.tmpl │ │ └── titlebar.inc │ ├── Smartphone │ │ ├── barometer.html.tmpl │ │ ├── custom.js │ │ ├── favicon.ico │ │ ├── humidity.html.tmpl │ │ ├── icons │ │ │ ├── icon_ipad_x1.png │ │ │ ├── icon_ipad_x2.png │ │ │ ├── icon_iphone_x1.png │ │ │ └── icon_iphone_x2.png │ │ ├── index.html.tmpl │ │ ├── lang │ │ │ ├── de.conf │ │ │ ├── en.conf │ │ │ ├── nl.conf │ │ │ └── no.conf │ │ ├── rain.html.tmpl │ │ ├── skin.conf │ │ ├── temp.html.tmpl │ │ └── wind.html.tmpl │ └── Standard │ │ ├── NOAA │ │ ├── NOAA-%Y-%m.txt.tmpl │ │ └── NOAA-%Y.txt.tmpl │ │ ├── RSS │ │ └── weewx_rss.xml.tmpl │ │ ├── backgrounds │ │ ├── band.gif │ │ ├── butterfly.jpg │ │ ├── drops.gif │ │ ├── flower.jpg │ │ ├── leaf.jpg │ │ └── night.gif │ │ ├── favicon.ico │ │ ├── index.html.tmpl │ │ ├── lang │ │ ├── de.conf │ │ ├── en.conf │ │ ├── fr.conf │ │ ├── nl.conf │ │ └── no.conf │ │ ├── month.html.tmpl │ │ ├── skin.conf │ │ ├── smartphone │ │ ├── barometer.html.tmpl │ │ ├── custom.js │ │ ├── humidity.html.tmpl │ │ ├── icons │ │ │ ├── icon_ipad_x1.png │ │ │ ├── icon_ipad_x2.png │ │ │ ├── icon_iphone_x1.png │ │ │ └── icon_iphone_x2.png │ │ ├── index.html.tmpl │ │ ├── radar.html.tmpl │ │ ├── rain.html.tmpl │ │ ├── temp_outside.html.tmpl │ │ └── wind.html.tmpl │ │ ├── week.html.tmpl │ │ ├── weewx.css │ │ └── year.html.tmpl │ └── util │ ├── apache │ ├── conf-available │ │ └── weewx.conf │ └── conf.d │ │ └── weewx.conf │ ├── default │ └── weewx │ ├── i18n │ └── i18n-report │ ├── import │ ├── csv-example.conf │ ├── cumulus-example.conf │ ├── wd-example.conf │ ├── weathercat-example.conf │ └── wu-example.conf │ ├── init.d │ ├── weewx-multi │ ├── weewx.bsd │ ├── weewx.debian │ ├── weewx.freebsd │ ├── weewx.lsb │ ├── weewx.redhat │ └── weewx.suse │ ├── launchd │ └── com.weewx.weewxd.plist │ ├── logrotate.d │ └── weewx │ ├── logwatch │ ├── conf │ │ ├── logfiles │ │ │ └── weewx.conf │ │ └── services │ │ │ └── weewx.conf │ └── scripts │ │ └── services │ │ └── weewx │ ├── newsyslog.d │ └── weewx.conf │ ├── rsyslog.d │ └── weewx.conf │ ├── scripts │ ├── wee_config │ ├── wee_database │ ├── wee_debug │ ├── wee_device │ ├── wee_extension │ ├── wee_import │ ├── wee_reports │ ├── weewxd │ └── wunderfixer │ ├── solaris │ └── weewx-smf.xml │ ├── systemd │ └── weewx.service │ ├── tmpfiles.d │ └── weewx.conf │ └── udev │ └── rules.d │ ├── acurite.rules │ ├── cc3000.rules │ ├── fousb.rules │ ├── te923.rules │ ├── vantage.rules │ ├── weewx.rules │ ├── wmr100.rules │ ├── wmr300.rules │ └── ws28xx.rules ├── extensions ├── WLLDriver.zip ├── weewx-belchertown-release.1.3.1.tar.gz └── weewx-mqtt.zip ├── kubernetes ├── nginx-deployment.yaml └── weewx.yaml ├── notes.txt └── run-test.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-station.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/bin/create-station.sh -------------------------------------------------------------------------------- /bin/install_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/bin/install_ext.sh -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/bin/run.sh -------------------------------------------------------------------------------- /dist/weewx-3.6.1/weewx-3.6.1/extensions/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.6.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.6.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.6.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/README -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.6.2/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.6.2/extensions/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.6.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.6.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.6.2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.6.2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.7.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.7.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/README -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.7.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.7.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.7.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.7.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.7.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.7.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.7.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/README -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.7.1/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.7.1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.7.1/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.7.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.7.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.7.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.7.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.8.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.8.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.8.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/README -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.8.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.8.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.8.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.8.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.8.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.8.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.8.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.8.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/README -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.8.2/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.8.2/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.8.2/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.8.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.8.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.8.2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.8.2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.9.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.9.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.9.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/README -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.9.1/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.9.1/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.9.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.9.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.9.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-3.9.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-3.9.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-3.9.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/README -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-3.9.2/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-3.9.2/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-3.9.2/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-3.9.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-3.9.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/setup.py -------------------------------------------------------------------------------- /dist/weewx-3.9.2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-3.9.2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0a9/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0a9/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/bin/weewx/junk.py: -------------------------------------------------------------------------------- 1 | print(u"Hello world!") -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b11/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b11/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b12/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b12/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b14/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b14/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/MANIFEST.in -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/bin/weewx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b16/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b16/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/MANIFEST.in -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/bin/weewx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b18/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b18/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b3/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b3/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b4/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b4/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b5/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b5/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/README -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/README.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.0.0b6/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.0.0b6/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.1.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.1.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/README -------------------------------------------------------------------------------- /dist/weewx-4.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.1.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.1.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.1.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.1.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.1.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.1.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.1.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.1.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.1.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/README -------------------------------------------------------------------------------- /dist/weewx-4.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.1.1/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.1.1/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.1.1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.1.1/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.1.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.1.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.1.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.1.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.10.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.10.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.10.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/README -------------------------------------------------------------------------------- /dist/weewx-4.10.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.10.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.10.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.10.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.10.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.10.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.10.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.10.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/README -------------------------------------------------------------------------------- /dist/weewx-4.10.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.10.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.10.1/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.10.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.10.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.10.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.10.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.2.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.2.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.2.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/README -------------------------------------------------------------------------------- /dist/weewx-4.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.2.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.2.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.2.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.2.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.2.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.2.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.2.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.2.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.3.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.3.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.3.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/README -------------------------------------------------------------------------------- /dist/weewx-4.3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.3.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.3.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.3.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/README -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/README -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/README.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/README -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/README.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.3.0b3/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.3.0b3/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.4.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.4.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.4.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/README -------------------------------------------------------------------------------- /dist/weewx-4.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.4.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.4.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.4.0/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.4.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.4.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.4.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.4.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.4.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/README -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/README -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/README.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0a3/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0a3/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/README -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/README.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.5.0b2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.0b2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.5.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.5.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.5.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/README -------------------------------------------------------------------------------- /dist/weewx-4.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.5.1/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.5.1/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.5.1/examples/basic/changelog: -------------------------------------------------------------------------------- 1 | 0.1 02feb2014 2 | * initial release as packaged weewx extension 3 | -------------------------------------------------------------------------------- /dist/weewx-4.5.1/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.5.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.5.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.5.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.5.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wee_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wee_import -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wee_reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wee_reports -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/weewx/qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/weewx/qc.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0/bin/wunderfixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/bin/wunderfixer -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/debian.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/debian.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/js/cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/js/cash.js -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/logging.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/macos.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/macos.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/readme.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/redhat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/redhat.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/setup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/setup.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0/docs/xtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/docs/xtypes.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0/examples/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/examples/mem.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a3/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a3/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0a4/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0a4/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b3/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b3/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b6/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b6/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/README -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.0b7/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.0b7/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/README -------------------------------------------------------------------------------- /dist/weewx-4.6.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/wee_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/wee_config -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/wee_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/wee_device -------------------------------------------------------------------------------- /dist/weewx-4.6.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.1/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.6.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.6.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.6.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.6.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/README -------------------------------------------------------------------------------- /dist/weewx-4.6.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/README.md -------------------------------------------------------------------------------- /dist/weewx-4.6.2/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.6.2/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.6.2/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.6.2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.6.2/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.6.2/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.6.2/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.6.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.6.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.6.2/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.6.2/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.7.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.7.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/README -------------------------------------------------------------------------------- /dist/weewx-4.7.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.7.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.7.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.7.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.7.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.7.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.7.0/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.7.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.7.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.7.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.7.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.7.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.8.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.8.0/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/MANIFEST.in -------------------------------------------------------------------------------- /dist/weewx-4.8.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.8.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/README -------------------------------------------------------------------------------- /dist/weewx-4.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/README.md -------------------------------------------------------------------------------- /dist/weewx-4.8.0/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.8.0/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.8.0/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.8.0/bin/weewx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/weewx-4.8.0/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.8.0/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.8.0/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.8.0/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.8.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.8.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.8.0/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.8.0/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/README -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.9.0b1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.0b1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-4.9.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-4.9.1/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/MANIFEST.in -------------------------------------------------------------------------------- /dist/weewx-4.9.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/PKG-INFO -------------------------------------------------------------------------------- /dist/weewx-4.9.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/README -------------------------------------------------------------------------------- /dist/weewx-4.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/README.md -------------------------------------------------------------------------------- /dist/weewx-4.9.1/bin/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/bin/daemon.py -------------------------------------------------------------------------------- /dist/weewx-4.9.1/bin/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/bin/six.py -------------------------------------------------------------------------------- /dist/weewx-4.9.1/bin/wee_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/bin/wee_debug -------------------------------------------------------------------------------- /dist/weewx-4.9.1/bin/weewx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/weewx-4.9.1/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-4.9.1/docs/accum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/docs/accum.md -------------------------------------------------------------------------------- /dist/weewx-4.9.1/docs/sle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/docs/sle.html -------------------------------------------------------------------------------- /dist/weewx-4.9.1/docs/suse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/docs/suse.htm -------------------------------------------------------------------------------- /dist/weewx-4.9.1/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/setup.cfg -------------------------------------------------------------------------------- /dist/weewx-4.9.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/setup.py -------------------------------------------------------------------------------- /dist/weewx-4.9.1/weewx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-4.9.1/weewx.conf -------------------------------------------------------------------------------- /dist/weewx-5.0.2/DEV_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/DEV_NOTES.txt -------------------------------------------------------------------------------- /dist/weewx-5.0.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/LICENSE.txt -------------------------------------------------------------------------------- /dist/weewx-5.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/README.md -------------------------------------------------------------------------------- /dist/weewx-5.0.2/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/TODO.md -------------------------------------------------------------------------------- /dist/weewx-5.0.2/bin/weectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/bin/weectl -------------------------------------------------------------------------------- /dist/weewx-5.0.2/bin/weewxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/bin/weewxd -------------------------------------------------------------------------------- /dist/weewx-5.0.2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/makefile -------------------------------------------------------------------------------- /dist/weewx-5.0.2/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/mkdocs.yml -------------------------------------------------------------------------------- /dist/weewx-5.0.2/pkg/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/pkg/debian/conffiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/pkg/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/pkg/weewx-python2.list: -------------------------------------------------------------------------------- 1 | deb [arch=all] http://weewx.com/apt/python2 squeeze main 2 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/pkg/weewx-python3.list: -------------------------------------------------------------------------------- 1 | deb [arch=all] http://weewx.com/apt/python3 buster main 2 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/poetry.lock -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weecfg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weectl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/src/weectl.py -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weedb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weeplot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weeutil/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weewx/drivers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weewx/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weewx/tests/test_skins/StandardTest/NOAA: -------------------------------------------------------------------------------- 1 | ../../../../weewx_data/skins/Seasons/NOAA -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weewx_data/examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/weewx-5.0.2/src/weewxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/dist/weewx-5.0.2/src/weewxd.py -------------------------------------------------------------------------------- /doug_dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/doug_dockerfile.txt -------------------------------------------------------------------------------- /extensions/WLLDriver.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/extensions/WLLDriver.zip -------------------------------------------------------------------------------- /extensions/weewx-mqtt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/extensions/weewx-mqtt.zip -------------------------------------------------------------------------------- /kubernetes/weewx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/kubernetes/weewx.yaml -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/notes.txt -------------------------------------------------------------------------------- /run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdotorg/docker-weewx/HEAD/run-test.sh --------------------------------------------------------------------------------