That's good to know, so I have to repeat these steps after a weewx update? I have it now running with the additional sensors: http://meteo.fankyy.ch/WsDi1c_sdr/ Not sure if the rain graph will only appear after it begins with rain count?
I used soilMoist 1-3 for Wind, Gust and Direction, but it put all in one graph, with the highest number 360 for wind direction, the speed is barely visible. So i use soiltemp4 for the wind direction now and hope, the back-to-normal named soilMoist3 will go out of the daily graph after 24h? Is there an easy way to delete it out of the database, without having to examine/stopping the database for a long time? I couldn't find where tho do this step: then to display wind speed you would use $current.soilMoist1 in a template and for wind dir $current.soilMoist2 and/or $current.soilMoist2.ordinal_compass in the seasons skin an oldman schrieb am Sonntag, 27. Februar 2022 um 09:11:24 UTC+1: > there are other units. just look at the schema file to see what there is. > if your station sends wind gust you could one that's not in use. > acurite 5n1 do not send wind gust just wind speed and dir. to get the > extra wind stuff i have to hack weewx files for every weewx update. > > On Sunday, February 27, 2022 at 1:33:17 AM UTC-6 [email protected] wrote: > >> That would be a good and much simpler solution if it works, will >> definitely try this. Is there some unit remaining which i could use for >> wind_gust? >> >> Thanks a lot! >> >> an oldman schrieb am Samstag, 26. Februar 2022 um 23:47:49 UTC+1: >> >>> you could try something like in this if >>> soilMoist1, soilMoist2, extraTemp1, extraHumid1, windBatteryStatus and >>> hail are unsed >>> >>> in weewx.conf >>> [SDR] >>> [[sensor_map]] >>> soilMoist1 = wind_speed.1276.Acurite5n1PacketV2 >>> soilMoist2 = wind_dir.1276.Acurite5n1PacketV2 >>> extraTemp1 = temperature.1276.Acurite5n1PacketV2 >>> extraHumid1 = humidity.1276.Acurite5n1PacketV2 >>> windBatteryStatus = battery.1276.Acurite5n1PacketV2 >>> hail_total = rain_total.1276.Acurite5n1PacketV2 >>> [[deltas]] >>> hail = hail_total >>> >>> [Accumulator] >>> [[hail]] >>> extractor = sum >>> >>> and in extensions.py >>> import weewx.units >>> weewx.units.obs_group_dict['soilMoist1'] = 'group_speed' >>> weewx.units.obs_group_dict['soilMoist2'] = 'group_direction' >>> >>> then to display wind speed you would use $current.soilMoist1 in a >>> template >>> and for wind dir $current.soilMoist2 and/or >>> $current.soilMoist2.ordinal_compass >>> >>> not shure where to change the labels at but i think in 4.6.2 it is in >>> the lang files >>> say in en.conf >>> [Labels] >>> [[Generic]] >>> soilMoist1 = Wind Speed (5n1) >>> soilMoist2 = Wind Direction (5n1) >>> windBatteryStatus = Battery (5n1) >>> hail = Rain (5n1) >>> $obs.label.soilMoist1 should show Wind Speed (5n1) and so on. >>> >>> On Saturday, February 26, 2022 at 11:27:03 AM UTC-6 an oldman wrote: >>> >>>> that config won't work with your set up, had to add a lot to the sdr >>>> driver for sensors, make some extension, add to the schema and >>>> user/extensions.py file and change some weewx core files. >>>> look in the wiki under data management Switching to the new, extended >>>> schema wview_extended >>>> <https://github.com/weewx/weewx/wiki/Switching-to-the-new-wview_extended-schema> >>>> . >>>> >>>> >>>> On Saturday, February 26, 2022 at 10:53:58 AM UTC-6 [email protected] >>>> wrote: >>>> >>>>> Now that's really great, thanks for the config. Where or how exactly >>>>> do i have to add the entrys in the schema file? >>>>> >>>>> an oldman schrieb am Samstag, 26. Februar 2022 um 16:41:11 UTC+1: >>>>> >>>>>> I have >>>>>> here is my sdr from weewx.conf >>>>>> extraTemp, batteryStatus, extraHumid1 - 8 are in the >>>>>> wview_extended.py schema. >>>>>> I had to add to the schema extrawindSpeed, extrawindDir, >>>>>> lightning_distance15, lightning_strike_count15 and extraTemp, >>>>>> batteryStatus, extraHumid 9 - 16. >>>>>> Had a 3rd 5n1 but a hail storm took out 2 5n1s, had to combine them >>>>>> to get 1 working 5n1. >>>>>> >>>>>> On Saturday, February 26, 2022 at 2:51:21 AM UTC-6 [email protected] >>>>>> wrote: >>>>>> >>>>>>> Would it be possible to record data from two or more full sensor >>>>>>> arrays (including wind and rain) in one weewx instance? Or record the >>>>>>> data >>>>>>> in multiple weewx instances with only one SDR-stick? >>>>>>> >>>>>>> I know multiple SDR sticks to multiple weewx instances is possible, >>>>>>> but how could it be done with just one stick? >>>>>>> >>>>>>> I already achieved to get the temperature from a second sensor with >>>>>>> the extraTempSensor value in the sensor map, but i guess this wouldn't >>>>>>> work >>>>>>> for wind and rain? It seems like it would need basically only an >>>>>>> adaption >>>>>>> to the schema and database, but to edit these seems a bit complex for >>>>>>> me, >>>>>>> has anyone ever done this? >>>>>>> >>>>>> -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/fc8b03a9-24e1-4e9b-b7d7-2a04eb361c66n%40googlegroups.com.
