craigerl / ygate

Turn your Yaesu APRS radio into an igate. By KM6LYW.
28 stars 9 forks source link

Wondering why the ygate does not show on APRS map sites #16

Closed purekevin closed 3 months ago

purekevin commented 3 months ago

First off, thanks for the work. Using an FTM-400 and it is acting as a gateway just fine. I can see the beacon packets in the log and see them online. However I cannot ever see the actual ygate staion show on the maps like APRS.fi as I have with other versions of the ygate python script. What am I missing? TIA!

User specific constants (please fill these out accordingly)

USER = "K2KFP-1" PASS = "#####" LAT = "4029.69N" LONG = "1121.60W" SERIAL_PORT = 'COM3' # Windows

APRS-IS specific constants

HOST = "noam.aprs2.net" # north america tier2 servers round robin PORT = 14580 ICON = "&" OVERLAY = "R" BUFFER_SIZE = 512

My position string constants

POSITION = LAT + OVERLAY + LONG TO_CALL = ">APZYG2" # Software version used as TOCALL MESSAGE = "D7: Yaesu ygate https://github.com/craigerl/ygate" MY_POSITION_STRING = USER + TO_CALL + ",TCPIP*:!" + POSITION + ICON + MESSAGE + "\r\n" MY_LOGIN_STRING = "user " + USER + " pass " + PASS + " vers ygate.py 2.00\n" BEACON_INTERVAL_S = 1800 BEACON_INTERVAL_S = 180

purekevin commented 3 months ago

Ah snap. I figured it out. My LONG was not correct. As soon as I pasted and hit submit, I saw the error and just fixed it. My bad.

purekevin commented 3 months ago

User Error! My bad. Thanks