libhomeradareasy collect aircraft information |
4,654,851 registered contacts 57728 unique aircraft records, 9.31% unresolved records |
| ACARS DECODER Planespotting Network Kinetic Avionics AirNav Systems Airframes.org | ||||||
| Home Docu Examples Functions Downloads Database Search Online API Success Stories News Imprint / Contact | ||||||
![]() libhomeradar is an easy to use library for all type of programming language which can use libraries. libhomeradar can connect to different sources to collect aircraft informations arround the world with extended informations, powerful filtering and structured data access. libhomeradar is written in C and is available for Linux and Windows (2003, XP, NT, Vista). Currently libhomeradar works with the Kinetic Avionics SBS-1 base station and the Airnav Systems Radarbox. |
Using userspace log function
Since libhomeradar 1.003 you can use your own logging function to log events from libhomeradar.
/* Different logfile function */
void locallog(const char *logline) {
/*
Do whatever you want
Under linux you can write the string to the syslogd (see openlog(), closelog(), syslog())
*/
}
/* Registering you own log function */
int homeradar_register_logfunction(LHR handle, void (*function), const int reg, const int flags);
Before you can register your own logfile handler, you must enable the libhomeradar logging with the homeradar_logcontrol() function.
|
|||||