Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jawish/fis
Gets latest information on inbound and outbound flights for Ibrahim Nasir International Airport, Maldives.
https://github.com/jawish/fis
Last synced: 23 days ago
JSON representation
Gets latest information on inbound and outbound flights for Ibrahim Nasir International Airport, Maldives.
- Host: GitHub
- URL: https://github.com/jawish/fis
- Owner: jawish
- Created: 2015-09-04T18:09:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-22T05:35:01.000Z (about 7 years ago)
- Last Synced: 2024-10-24T03:28:05.182Z (about 2 months ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-maldives - FIS - Gets latest information on inbound and outbound flights for (VRMM) Velana International Airport - Maldives (Table of Contents / PHP Projects)
README
# FIS
Gets latest information on inbound and outbound flights for [(VRMM) Velana International Airport - Maldives](https://en.wikipedia.org/wiki/Velana_International_Airport)# Usage
```php
getFlights('arrivals');// depatures
$depatures = $fis->getFlights('depatures');var_dump($arrivals, $depatures);
```# Details
`getFlights()` returns an an array of Flights for the date (date => [Flights...]). The date is a UNIX timestamp.Each Flight contains the following details.
| field | description | example |
| --- | --- | ---- |
| `airlineName` | Human readable name of the airline | Emirates |
| `airlineId` | Unique ID for the airline | EK |
| `flightId` | Flight code | EK 658 |
| `route` | Array of route for the flight | Dubai |
| `scheduledAt` | Scheduled time in 24 hours format | 09:35 |
| `estimatedAt` | Estimated time | 09:50 |
| `status` | Status of the flight | LANDED |