Re: [weewx-user] Seasons skin, multiple WH51 sensors - wrong units

2023-07-25 Thread paulth...@gmail.com
Thanks Rainer!

extensions.py was indeed the missing piece I needed to get the right units.

Cheers,
Paul.

On Saturday, 22 July 2023 at 11:08:14 UTC+10 Rainer Lang wrote:

> Assuming you assign your WH51 sensors to the SoilMoist1 thru SoilMoist4 
> database fields, be via a fieldmap extension or a StdCalibrate/Corrections 
> entry in weewx.conf,
> you will also have to add some changes to extensions.py (in 
> /usr/share/weewx/user or /home/weewx  depending on your installation):
> (I also assume you are using an extended Interceptor driver for weewx to 
> read the HP2551 consol posts)
> *import weewx.units *
> *weewx.units.obs_group_dict['soilMoist1'] = 'group_percent'* 
> *weewx.units.obs_group_dict['soilMoist2'] = 'group_percent'*
>
> for each of the four available soilMoist fields in the wsview_extended 
> database schema, you will need to make such an entry
> (but only if you have another WH51 sensor) if you want their readings 
> shown in % rather than in cb
> if you have more than four WH51 (and want to save their values in the 
> database), you will either need to repurpose other not used fields in the 
> wsview_extended database schema or create additional columns in your 
> database e.g. by the help of the wee_database tool
>
> (the entry/line "*import weewx.units*"  needs to be there only once; if 
> it's already there, you don't need to add it a second time !) 
>
> weewx needs to restarted after having made the changes to extensions.py
>
> On 21.07.2023 17:07, paulth...@gmail.com wrote:
>
> I bought a HP2551 weather station to replace my old, trusty but crusty 
> WH3081.
>
> I went with the Seasons skin, because it was the only one that seemed to 
> recognise the  WH51 moisture sensor.  I followed some Internet instructions 
> to display the WH51 readings as a percentage instead of "cb"; job done.
>
> I recently bought a second WH51 sensor, and added it to weewx.conf in the 
> same way (soil_moisture_percent) as the first sensor; it stubbornly 
> displays as "cb".
>
> Any ideas?
>
> Cheers!
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to weewx-user+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/c2587160-ce5a-4227-afff-9959e2d55a9an%40googlegroups.com
>  
> 
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/8e4f525a-24d6-4d22-98a8-a666e068749fn%40googlegroups.com.


Re: [weewx-user] Seasons skin, multiple WH51 sensors - wrong units

2023-07-21 Thread 'Rainer Lang' via weewx-user
Assuming you assign your WH51 sensors to the SoilMoist1 thru SoilMoist4 
database fields, be via a fieldmap extension or a 
StdCalibrate/Corrections entry in weewx.conf,
you will also have to add some changes to extensions.py (in 
/usr/share/weewx/user or /home/weewx  depending on your installation):
(I also assume you are using an extended Interceptor driver for weewx to 
read the HP2551 consol posts)


*import weewx.units ***
*weewx.units.obs_group_dict['soilMoist1'] = 'group_percent'*
*weewx.units.obs_group_dict['soilMoist2'] = 'group_percent'*

for each of the four available soilMoist fields in the wsview_extended 
database schema, you will need to make such an entry
(but only if you have another WH51 sensor) if you want their readings 
shown in % rather than in cb
if you have more than four WH51 (and want to save their values in the 
database), you will either need to repurpose other not used fields in 
the wsview_extended database schema or create additional columns in your 
database e.g. by the help of the wee_database tool


(the entry/line "_import weewx.units_" needs to be there only once; if 
it's already there, you don't need to add it a second time !)


weewx needs to restarted after having made the changes to extensions.py

On 21.07.2023 17:07, paulth...@gmail.com wrote:
I bought a HP2551 weather station to replace my old, trusty but crusty 
WH3081.


I went with the Seasons skin, because it was the only one that seemed 
to recognise the  WH51 moisture sensor.  I followed some Internet 
instructions to display the WH51 readings as a percentage instead of 
"cb"; job done.


I recently bought a second WH51 sensor, and added it to weewx.conf in 
the same way (soil_moisture_percent) as the first sensor; it 
stubbornly displays as "cb".


Any ideas?

Cheers!
--
You received this message because you are subscribed to the Google 
Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c2587160-ce5a-4227-afff-9959e2d55a9an%40googlegroups.com 
.


--
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/8d9d0c0e-c78a-92ad-ea07-6db6fab41086%40gmail.com.


Re: [weewx-user] Seasons skin, multiple WH51 sensors - wrong units

2023-07-21 Thread vince
A search for "moisture units" here found this link 
- https://groups.google.com/g/weewx-user/c/0FrJfajXxcs/m/_0Foj58-AQAJ

On Friday, July 21, 2023 at 9:08:32 AM UTC-7 Mark Fraser wrote:

> I'm in the same situation. Looking at the weewx documentation it only 
> supports cb units for moisture. Was looking to see if there is a conversion 
> between units.
>
> On Fri, 21 Jul 2023, 16:07 paulth...@gmail.com,  
> wrote:
>
>> I bought a HP2551 weather station to replace my old, trusty but crusty 
>> WH3081.
>>
>> I went with the Seasons skin, because it was the only one that seemed to 
>> recognise the  WH51 moisture sensor.  I followed some Internet instructions 
>> to display the WH51 readings as a percentage instead of "cb"; job done.
>>
>> I recently bought a second WH51 sensor, and added it to weewx.conf in the 
>> same way (soil_moisture_percent) as the first sensor; it stubbornly 
>> displays as "cb".
>>
>> Any ideas?
>>
>> Cheers!
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "weewx-user" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to weewx-user+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/c2587160-ce5a-4227-afff-9959e2d55a9an%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/671422e8-e8e1-42bc-86d1-18365ebf5387n%40googlegroups.com.


Re: [weewx-user] Seasons skin, multiple WH51 sensors - wrong units

2023-07-21 Thread Mark Fraser
I'm in the same situation. Looking at the weewx documentation it only
supports cb units for moisture. Was looking to see if there is a conversion
between units.

On Fri, 21 Jul 2023, 16:07 paulth...@gmail.com, 
wrote:

> I bought a HP2551 weather station to replace my old, trusty but crusty
> WH3081.
>
> I went with the Seasons skin, because it was the only one that seemed to
> recognise the  WH51 moisture sensor.  I followed some Internet instructions
> to display the WH51 readings as a percentage instead of "cb"; job done.
>
> I recently bought a second WH51 sensor, and added it to weewx.conf in the
> same way (soil_moisture_percent) as the first sensor; it stubbornly
> displays as "cb".
>
> Any ideas?
>
> Cheers!
>
> --
> You received this message because you are subscribed to the Google Groups
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to weewx-user+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/c2587160-ce5a-4227-afff-9959e2d55a9an%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPSrEdnpLL6pRvJq4aQ9H5rPYBUWCX_CSMeJ03VNWSg-ccX3bA%40mail.gmail.com.


[weewx-user] Seasons skin, multiple WH51 sensors - wrong units

2023-07-21 Thread paulth...@gmail.com
I bought a HP2551 weather station to replace my old, trusty but crusty 
WH3081.

I went with the Seasons skin, because it was the only one that seemed to 
recognise the  WH51 moisture sensor.  I followed some Internet instructions 
to display the WH51 readings as a percentage instead of "cb"; job done.

I recently bought a second WH51 sensor, and added it to weewx.conf in the 
same way (soil_moisture_percent) as the first sensor; it stubbornly 
displays as "cb".

Any ideas?

Cheers!

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c2587160-ce5a-4227-afff-9959e2d55a9an%40googlegroups.com.


Re: [weewx-user] Seasons skin, index.html and telemetry.html not updating

2022-07-21 Thread Tom Keffer
You need only deactivate the Standard skin, then activate the Seasons skin.
Delete all the generated files and images --- they will be regenerated
again, this time using the Seasons skin.

On Thu, Jul 21, 2022 at 5:14 PM willefg  wrote:

> Thank you, Tom
>
> To do that I will have to change the setup again and go back to the Season
> skin and disable the Standard skin that I ended up using. I had hoped
> someone has had the same problem and could give me a quick solution….
> I’m away from the system the next few days, but I’ll make the necessary
> changes and create the debug log next week.
>
> Op vrijdag 22 juli 2022 om 01:41:55 UTC+2 schreef tke...@gmail.com:
>
>> The logs almost always leave a clue.
>>
>> Set debug=1, then restart weewxd. Post the logs through the first report
>> generation.
>>
>>
>> On Thu, Jul 21, 2022 at 4:30 PM willefg  wrote:
>>
>>> Hi,
>>>
>>> I''ve had this issue, where every file generated from the Seasons skin
>>> is constantly updating except the index.html and telemetry.html. Boths
>>> files are unchanged ever since an upgrade or different kind of system
>>> change back in March. I've had the same problem before where they stayed
>>> unchanged for many months. I took another look and didn't find anything
>>> strange. I've now decided to try the Standard report skin and that works
>>> fine and it updates all files when necessary.
>>>
>>> However, the Seasons skin has some advantages like sensor battery status
>>> and a nicer layout. So, I would love to get it going again.
>>> So far, I've looked at the logs but there's simply no mention of both
>>> files. Not even an error. Any ideas why they are skipped?
>>>
>>> Thank you for your help.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "weewx-user" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to weewx-user+...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/714325a2-e2b6-4c0f-bb2f-60b1940b0ddfn%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to weewx-user+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/181f767f-0b4f-425f-9199-49f0ce625273n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zECPj7Tg-LQ2XLVxq7GrVZ5Ndstr%3DS0n%3D7%2BtgXGLkcDMaA%40mail.gmail.com.


Re: [weewx-user] Seasons skin, index.html and telemetry.html not updating

2022-07-21 Thread willefg
Thank you, Tom

To do that I will have to change the setup again and go back to the Season 
skin and disable the Standard skin that I ended up using. I had hoped 
someone has had the same problem and could give me a quick solution…. 
I’m away from the system the next few days, but I’ll make the necessary 
changes and create the debug log next week.

Op vrijdag 22 juli 2022 om 01:41:55 UTC+2 schreef tke...@gmail.com:

> The logs almost always leave a clue.
>
> Set debug=1, then restart weewxd. Post the logs through the first report 
> generation.
>
>
> On Thu, Jul 21, 2022 at 4:30 PM willefg  wrote:
>
>> Hi,
>>
>> I''ve had this issue, where every file generated from the Seasons skin is 
>> constantly updating except the index.html and telemetry.html. Boths files 
>> are unchanged ever since an upgrade or different kind of system change back 
>> in March. I've had the same problem before where they stayed unchanged for 
>> many months. I took another look and didn't find anything strange. I've now 
>> decided to try the Standard report skin and that works fine and it updates 
>> all files when necessary.
>>
>> However, the Seasons skin has some advantages like sensor battery status 
>> and a nicer layout. So, I would love to get it going again. 
>> So far, I've looked at the logs but there's simply no mention of both 
>> files. Not even an error. Any ideas why they are skipped?
>>
>> Thank you for your help.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "weewx-user" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to weewx-user+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/714325a2-e2b6-4c0f-bb2f-60b1940b0ddfn%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/181f767f-0b4f-425f-9199-49f0ce625273n%40googlegroups.com.


Re: [weewx-user] Seasons skin, index.html and telemetry.html not updating

2022-07-21 Thread Tom Keffer
The logs almost always leave a clue.

Set debug=1, then restart weewxd. Post the logs through the first report
generation.


On Thu, Jul 21, 2022 at 4:30 PM willefg  wrote:

> Hi,
>
> I''ve had this issue, where every file generated from the Seasons skin is
> constantly updating except the index.html and telemetry.html. Boths files
> are unchanged ever since an upgrade or different kind of system change back
> in March. I've had the same problem before where they stayed unchanged for
> many months. I took another look and didn't find anything strange. I've now
> decided to try the Standard report skin and that works fine and it updates
> all files when necessary.
>
> However, the Seasons skin has some advantages like sensor battery status
> and a nicer layout. So, I would love to get it going again.
> So far, I've looked at the logs but there's simply no mention of both
> files. Not even an error. Any ideas why they are skipped?
>
> Thank you for your help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to weewx-user+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/714325a2-e2b6-4c0f-bb2f-60b1940b0ddfn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEA3uK-QuHG1cx0tKu75pUE%3DUaSfoT%3DBgUqw2HmCix0odw%40mail.gmail.com.


[weewx-user] Seasons skin, index.html and telemetry.html not updating

2022-07-21 Thread willefg
Hi,

I''ve had this issue, where every file generated from the Seasons skin is 
constantly updating except the index.html and telemetry.html. Boths files 
are unchanged ever since an upgrade or different kind of system change back 
in March. I've had the same problem before where they stayed unchanged for 
many months. I took another look and didn't find anything strange. I've now 
decided to try the Standard report skin and that works fine and it updates 
all files when necessary.

However, the Seasons skin has some advantages like sensor battery status 
and a nicer layout. So, I would love to get it going again. 
So far, I've looked at the logs but there's simply no mention of both 
files. Not even an error. Any ideas why they are skipped?

Thank you for your help.

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/714325a2-e2b6-4c0f-bb2f-60b1940b0ddfn%40googlegroups.com.


[weewx-user] Seasons skin woff2 font type fix

2022-03-08 Thread Paul R Anderson
I've created issue #760
 to look into
getting Seasons skin to use woff2 fonts. Currently all websites running
WeeWX with default Seasons skin use woff font type.
Just mentioning here because on Github my id is my ham radio call N1OTX
rather than myname. Wanted everyone to know who to blame.
Thanks
Paul

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAOAVAedwRhpQkSqWBuHELn7zJhGSXAiXkpb9R1rX5qRtrWtP9w%40mail.gmail.com.


[weewx-user] Seasons skin with Windrun

2020-08-02 Thread Praveen Chandrasekaran
Hi,

Does anyone here have seasons skin with windrun added to display?
I am doing the same and I am wondering whether for week/month/sum, its 
better to display the max daily windrun or cumulative windrun!

Regards,
Praveen

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/0d758879-5a0f-42ec-a365-86991f4a01b8o%40googlegroups.com.


[weewx-user] Seasons skin + MQTT

2019-07-21 Thread Praveen Chandrasekaran
Hi,

While I do like many aspects of the Belchertown skin (with its live data 
and the awesome graphs), I am still attached to the Seasons skin (No 
offence Pat!).

What I love about the Seasons skin is that everything is available on my 
screen on mobile (all graphs etc) without having to scroll as against the 
Belchertown skin

With WU becoming pretty much useless I miss the live data at times as I am 
still using Seasons skin. What would it take to get the data under Current 
Weather in Seasons skin from MQTT? I am not too familiar with HTML or JS. 
This is an idea that I had and thought of circulating it over here.

Pat, On a related note, what would it take to format the Belchertown skin 
similar to Seasons skin? :) I like everything about the Belchertown skin 
just that I prefer the display format of Seasons over it still. 

Regards,
Praveen

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/bb723062-4787-446c-b1c5-c16f484904e6%40googlegroups.com.


[weewx-user] Seasons Skin timestamps

2019-04-09 Thread Mark Jenks
Why was the time removed from daily for the highs and lows?   Any way to 
bring them back without going back to Standard?

Also, is there a way to see hourly stats instead of just Weekly or Monthly?

-Mark

High Temperature
Low Temperature 55.5°F at 02:15:21 PM
37.4°F at 04:51:05 AM
High Heat Index
Low Wind Chill 55.5°F at 02:15:21 PM
31.8°F at 05:58:24 AM
High Humidity
Low Humidity 90% at 04:04:59 AM
45% at 02:02:54 PM
High Dewpoint
Low Dewpoint 41.6°F at 11:39:02 AM
25.6°F at 06:34:09 PM
High Barometer
Low Barometer 29.945 inHg at 06:29:03 PM
29.801 inHg at 01:07:02 PM

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Seasons skin - Can't switch to Week/Month/Year

2019-03-29 Thread Orv Beach
Fresh install of 3.9.1 on Debian Stretch, w/Seasons skin (like the skin - 
props to all that worked on it!).  Works well except at the top, although I 
can highlight the Week, Month, and Year, when I click on them the view 
doesn't change away from the Day view.  Is there something I need to enable 
someplace to make that happen?

Thanks.

Orv

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Seasons Skin

2019-03-12 Thread Chris Plant
Perfect! Thanks. That’s what I was looking for.

On Tue, Mar 12, 2019 at 9:26 PM vince  wrote:

> On Tuesday, March 12, 2019 at 7:04:51 PM UTC-7, Chris Plant wrote:
>>
>> I’ve got the radar image I want. It’s the Satellite one id like to
>> change.
>>
>>
>>
> https://www.star.nesdis.noaa.gov/GOES/ perhaps ?
> pick your area.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "weewx-user" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/weewx-user/oKXtjaUl4O0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> weewx-user+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 

Chris Plant
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Seasons Skin

2019-03-12 Thread vince
On Tuesday, March 12, 2019 at 7:04:51 PM UTC-7, Chris Plant wrote:
>
> I’ve got the radar image I want. It’s the Satellite one id like to change. 
>
>
>
https://www.star.nesdis.noaa.gov/GOES/ perhaps ?
pick your area. 

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Seasons Skin

2019-03-12 Thread Chris Plant
I’ve got the radar image I want. It’s the Satellite one id like to change.

On Tue, Mar 12, 2019 at 8:57 PM Thomas Keffer  wrote:

> You didn't say where  you are. Poke around in here and you can find dozens
> of choices: https://radar.weather.gov/ridge/Conus/index.php
>
> On Tue, Mar 12, 2019 at 6:46 PM Chris Plant 
> wrote:
>
>> Anyone know where I can use a different Satellite image? The default is
>> for the west coast and I’m not on the west coast.
>>
>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "weewx-user" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to weewx-user+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "weewx-user" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/weewx-user/oKXtjaUl4O0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> weewx-user+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 

Chris Plant
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Seasons Skin

2019-03-12 Thread Thomas Keffer
You didn't say where  you are. Poke around in here and you can find dozens
of choices: https://radar.weather.gov/ridge/Conus/index.php

On Tue, Mar 12, 2019 at 6:46 PM Chris Plant 
wrote:

> Anyone know where I can use a different Satellite image? The default is
> for the west coast and I’m not on the west coast.
>
> --
> You received this message because you are subscribed to the Google Groups
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to weewx-user+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Seasons Skin

2019-03-12 Thread Chris Plant
Anyone know where I can use a different Satellite image? The default is for the 
west coast and I’m not on the west coast. 

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.