Skip to content

Commit

Permalink
Merge pull request #1 from zlsa/gh-pages
Browse files Browse the repository at this point in the history
test
  • Loading branch information
MaicomMR committed Sep 21, 2015
2 parents 26bdb1b + 503400c commit 3779558
Show file tree
Hide file tree
Showing 32 changed files with 2,436 additions and 1,136 deletions.
116 changes: 0 additions & 116 deletions LICENSE

This file was deleted.

16 changes: 16 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
All the files in this repository are licensed under the MIT License, unless specifically mentioned below.

# The MIT License (MIT)

Copyright (c) 2014 Jon Ross

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


# Files under different licenses:

- [`fiber.min.js`](https://github.com/linkedin/Fiber) is licensed under the Apache license.
25 changes: 25 additions & 0 deletions assets/aircraft/be36.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Beechcraft Bonanza",
"icao": "BE36",
"wake": "light",
"rate": {
"ascent": 1230,
"descent": 2000,
"accelerate": 4,
"decelerate": 3
},
"runway": {
"takeoff": 0.620,
"landing": 0.440
},
"speed":{
"min": 60,
"max": 179,
"landing": 80,
"cruise": 168
},
"capability": {
"ils": false,
"fix": false
}
}
25 changes: 25 additions & 0 deletions assets/aircraft/c172.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Cessna 172 Skyhawk",
"icao": "C172",
"wake": "light",
"rate": {
"ascent": 730,
"descent": 1460,
"accelerate": 4,
"decelerate": 3
},
"runway": {
"takeoff": 0.300,
"landing": 0.152
},
"speed":{
"min": 50,
"max": 145,
"landing": 65,
"cruise": 122
},
"capability": {
"ils": false,
"fix": false
}
}
25 changes: 25 additions & 0 deletions assets/aircraft/c182.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Cessna 182 Skylane",
"icao": "C182",
"wake": "light",
"rate": {
"ascent": 924,
"descent": 1820,
"accelerate": 4,
"decelerate": 3
},
"runway": {
"takeoff": 0.460,
"landing": 0.410
},
"speed":{
"min": 49,
"max": 150,
"landing": 65,
"cruise": 145
},
"capability": {
"ils": false,
"fix": false
}
}
File renamed without changes.
25 changes: 25 additions & 0 deletions assets/aircraft/p28a.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Piper PA-28 Cherokee",
"icao": "P28A",
"wake": "light",
"rate": {
"ascent": 660,
"descent": 1320,
"accelerate": 4,
"decelerate": 3
},
"runway": {
"takeoff": 0.275,
"landing": 0.130
},
"speed":{
"min": 50,
"max": 123,
"landing": 65,
"cruise": 108
},
"capability": {
"ils": false,
"fix": false
}
}
18 changes: 18 additions & 0 deletions assets/airlines/fastga.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "FastGA",
"icao": "N",
"callsign": {
"name": "November",
"length": 5,
"alpha": true
},
"aircraft": [
["E50P", 1],
["E55P", 1],
["E545", 1],
["E135", 1],
["C510", 1],
["C550", 2],
["C750", 1]
]
}
16 changes: 16 additions & 0 deletions assets/airlines/lightga.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "LightGA",
"icao": "N",
"callsign": {
"name": "November",
"length": 5,
"alpha": true
},
"aircraft": [
["BE36", 5],
["C172", 5],
["C182", 5],
["C208", 1],
["P28A", 5]
]
}
Loading

0 comments on commit 3779558

Please sign in to comment.