The APRSWebService provides an XML interface to the VA7BCW-7 APRS interface. It can query last heard APRS packets by callsign or within a certain radius of a latitude/longitude pair.
Requires key: no
Parameters
callsign
callsign to query
since
within number of seconds ago
lat
latitude to query around
long
longitude to query around
radius
radius in kilometers to query around a lat/long
Application Notes
- Presently VA7BCW-7 stores packets with coordinate data, and then only certain sub-types such as position reports. Weather reporting is not yet supported.
Examples
Callsign Lookup
Geo search
Returns
The APRS web service returns an XML document such as:
<?xml version="1.0" encoding="iso-8859-1"?>
<results>
<count>2</count>
<aprs_lastheard>
<callsign>VE7MRN</callsign>
<latitude>49.25528</latitude>
<longitude>-122.94694</longitude>
<heardon>1241792307</heardon>
<packet><![CDATA[081417z4914.79N/12256.49WR255/005/A=000111]]></packet>
<distance>2.9038551929657</distance>
</aprs_lastheard>
<aprs_lastheard>
<callsign>VE7BFP-9</callsign>
<latitude>49.20194</latitude>
<longitude>-122.96083</longitude>
<heardon>1241885187</heardon>
<packet><![CDATA[091606z4912.07N/12257.39W<347/000]]></packet>
<distance>3.1907101896207</distance>
</aprs_lastheard>
</results>
