Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Direwolf 1.5 adding PHG5100327 to wx pckets #421

Closed
jondkelley opened this issue Sep 11, 2022 · 4 comments
Closed

Direwolf 1.5 adding PHG5100327 to wx pckets #421

jondkelley opened this issue Sep 11, 2022 · 4 comments

Comments

@jondkelley
Copy link

Issue noticed in Direwolf 1.5

I have a script that generates wxnow

# curl -s http://192.168.1.250:5000/wxnow.txt | tail -1
325/000g000t067r000p000P000h077b10118N5IPT Hi from Westwood in Kalamazoo, MI!*digi-gate*Direwolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}

I also have a beacon setup

PBEACON sendto=0 delay=0:30 every=17:17 power=30 height=25 gain=11 lat=42.303690 long=-85.628359 SYMBOL="weather station" COMMENTCMD="curl -s http://192.168.1.250:5000/wxnow.txt | tail -1"

For some reason my packets are showing up with a weird string PHG5100327
dw logs

[0L] WESTWD>APDW15:!4218.22N/08537.70W_PHG5100325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!*digi-gate*Direwolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}
[ig] WESTWD>APDW15:!4218.22N/08537.70W_PHG5100325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!*digi-gate*Direwolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}

findu

WESTWD>APDW15,TCPIP*,qAC,T2CAEAST:!4218.22N/08537.70W_PHG5100327/000g000t067r000p000P000h068b00000N5IPT Hi from Westwood in Kalamazoo, MI!*digi-gate*Direwolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}

I think this string makes weather packet decode impossible on aprs websites.

Any idea what causes this?

@jondkelley
Copy link
Author

I now suspect it is

power=30 height=25 gain=11

@dranch
Copy link
Collaborator

dranch commented Sep 11, 2022

Please note that Direwolf v1.5 is very old. Please rebuild using the "dev" branch here in Github as it's effectively the upcoming 1.7 version which has a lot of bug fixes, improvements, etc.

@wb2osz
Copy link
Owner

wb2osz commented Sep 11, 2022

Weather report with position can't have PHG. Here is an easy way to see if a packet is valid, and what it means.

echo 'aprspacket' | decode_aprs

example:

echo 'WESTWD>APDW15:!4218.22N/08537.70W_PHG5100325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}' | decode_aprs

WESTWD>APDW15:!4218.22N/08537.70W_PHG5100325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}
Didn't find wind direction in form c999.
Didn't find wind speed in form s999.
Didn't find wind gust in form g999.
Didn't find temperature in form t999.
Weather Report, WEATHER Station (blue), DireWolf, WB2OSZ
N 42 18.2200, W 085 37.7000
, "PHG5100325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}"

That was not recognized as a valid weather report. Now remove the PHG5100..

$ echo 'WESTWD>APDW15:!4218.22N/08537.70W_325/000g000t067r000p000P000h077b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}' | decode_aprs

WESTWD>APDW15:!4218.22N/08537.70W_325/000g000t067r000p000P000**h077**b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}
Weather Report, WEATHER Station (blue), DireWolf, WB2OSZ
N 42 18.2200, W 085 37.7000
wind 0.0 mph, direction 325, gust 0, temperature 67, rain 0.00 in last hour, rain 0.00 in last 24 hours, rain 0.00 since midnight, humidity 7, "7b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}"

The weather was MOSTLY decoded properly.

Why was "7b10120" considered leftover? If we look at the WXNOW.TXT format https://cumuluswiki.org/a/Wxnow.txt "h" should be followed by only two digits. You have three and the barometric pressure was not decoded.

If we remove the extra '0', after the 'h', we get:

Humidity is now decoded properly.

echo 'WESTWD>APDW15:!4218.22N/08537.70W_325/000g000t067r000p000P000h77b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}' | decode_aprs

WESTWD>APDW15:!4218.22N/08537.70W_325/000g000t067r000p000P000h77b10120N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}
Weather Report, WEATHER Station (blue), DireWolf, WB2OSZ
N 42 18.2200, W 085 37.7000
wind 0.0 mph, direction 325, gust 0, temperature 67, rain 0.00 in last hour, rain 0.00 in last 24 hours, rain 0.00 since midnight, humidity 77, barometer 29.89, "N5IPT Hi from Westwood in Kalamazoo, MI!digi-gateDirewolf on Rasp.Pi 1[2011]***see my weather station open source Python code @ https://github.com/jondkelley/eco_aprs_weather {ECOWITT}"

This is now correct. you need to have only two digits for humidity.

@wb2osz
Copy link
Owner

wb2osz commented Sep 11, 2022

Here's your problem:

fields.append("h%03d" % (int(humidity_outdoor)))

Humidity is TWO digits.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants