gordonjcp / aprsmap

An APRS application using osm-gps-map
19 stars 4 forks source link

APRS data should be logged to SQLite #7

Open mgdm opened 13 years ago

mgdm commented 13 years ago

Anything and everything we receive should be logged. Make it happen.

Hibby commented 13 years ago

Work in progress now - looking at two tables so far, aprs_data and user_data. For user data, looks like it'll be take data from table, assign it to variables (lat/long/radius/etc), drop the table, and make/write table on program close.

For aprs_data, it'll probably log everything to the database (which is easy... INSERT INTO aprs_data (key,call,distance to, bearing, symbol data) VALUES (1,'MM3ZRZ','3695','250','/A') and read it elsewhere.

Or something like that... So far, we have the database (pre-generated), and a way of inputting/reading data... no transforming that into variables ... yet.