libhomeradareasy collect aircraft information |
4,295,331 registered contacts 55768 unique aircraft records, 10.32% 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. |
Message filtering
libhomeradar provides also some possibilies to set different filters on the received messages. Every filter can contain chained filter rules which will be called until the filter is finished or one of the rules becomes false (or true on reversed rules) There are some functions available to control the filtering process of libhomeradar: /* Create new filterelement and return ID from this filter Set hostid to LHR_HOSTS_ALL to activate filter for every host */ int homeradar_addfilter(LHR handle, const int flags, const char *filter, const int hostid); /* Delete complete filter chain from the list */ int homeradar_removefilter(LHR handle, const int filterid); /* Test filter with the given contact structure */ int homeradar_testfilter(LHR handle, const int filterid, const LHR_CONTACT *C); /* Append rule to a given filter, returns a valid rule id */ int homeradar_appendrule(LHR handle, const int filterid, const int flags, const char *filter); /* Activate (enable) rule in a given filter */ int homeradar_enablerule(LHR handle, const int filterid, const int ruleid); /* Delete (disable) rule in a given filter */ int homeradar_disablerule(LHR handle, const int filterid, const int ruleid); See the examples page for some filtering examples.
|
|||||