Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chniter/opensky-api
C# binding for the OpenSky Network REST API
https://github.com/chniter/opensky-api
Last synced: about 1 month ago
JSON representation
C# binding for the OpenSky Network REST API
- Host: GitHub
- URL: https://github.com/chniter/opensky-api
- Owner: chniter
- License: mit
- Created: 2020-07-08T09:57:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T19:54:28.000Z (over 5 years ago)
- Last Synced: 2024-10-14T04:28:25.236Z (3 months ago)
- Size: 4.3 MB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The OpenSky Network API
This repository contains API client implementations for the OpenSky API REST in C#.
### Installation
WIP
### Usage
```c#
OpenSkyApi api = new OpenSkyApi();States result = api.GetStates();
Console.WriteLine(result);
```will output something like this:
```
{
'states': [
'icao24': '7800ed',
'call_sign': 'CES5124 ',
'origin_country': 'China',
'last_position_update': 1507203250,
'last_contact': 1507203250,
'longitude': 116.8199,
'latitude': 40.2763,
'baro_altitude': 3459.48,
'on_ground': False,
'velocity': 181.88,
'heading': 84.64,
'vertical_rate': 11.7,
'geo_altitude': None,
'squawk': 3566.16,
'5632',
'spi': False,
'position_source': 0
],...
],
'time': 1507203250
}
```## Resources
* [API documentation](https://opensky-network.org/apidoc)
* [OpenSky Forum](https://opensky-network.org/forum)