zlsa / atc

https://openscope.co/
342 stars 107 forks source link

Info #743

Closed T0mmy09 closed 7 years ago

T0mmy09 commented 7 years ago

Hello,

i'am Thomas, this is the first time that i take part at this forum, so , i would like to ask some question to understand what i readed in the other issue. someone can help me to understand the working of this program? I readed some texts, inside it i found more new information about this game. i didn't never saw many of these updates in my version.

Thank you very much

Fechulo commented 7 years ago

Hey @T0mmy09!

Since the game is in-browser no update is necessary, but you won't notice (or at least you shouldn't) notice any changes, because this update improves the code without changing the game itself.

If you'd like to contribute to the game, I strongly encourage you to take a look at the wiki and also the airport format description. If you need any help, you can always open up an issue and we'll do our best to answer. If you're finding it difficult to create the airport, feel free to request it and I (or someone else) will make the airport for you.

willfrd commented 7 years ago

Hello Thomas, Always nice to see new people around :-) The commands to play are listed here: https://github.com/zlsa/atc/wiki I don´t know if you are familiar with github or not but if you are interested in creating new airports first follow all the steps here: https://github.com/zlsa/atc/wiki/***NEW-CONTRIBUTORS-HELP***/ When you are creating the airport you have to follow the structure described here: https://github.com/zlsa/atc/wiki/Airport-format-description but if its your first time I suggest you use an existing airport and modify the code to start creating a new one, you have a list with all the airports here: https://github.com/zlsa/atc/tree/gh-pages/assets/airports If you have completed the airport just open a new pull request and once it is checked it will be merged into the final version (which is up to date with the updates), which is here: http://zlsa.github.io/atc/ Hope to see new Italian airports ^^ @Fechulo always faster at typing xD

T0mmy09 commented 7 years ago

thanks to everybody for the quick response. it's time to start studying this new system!

T0mmy09 commented 7 years ago

@Fechulo sorry for the noise, i have created the airport's file (with the data of the aerodrome, fix, and one sid). if i want to try this, to check if all goes right, i need to upload it in the airport's folder or it's possible to try it in trial mod?

thanks thanks infinitely

Fechulo commented 7 years ago

@T0mmy09 The method I use to test my changes is to create a local server using python. There's some info on how to do this here. If you google how to set up a local server with python, a bunch of helpful websites should come up, such as this one or this one

To add your changes to the game you need to put the airport file in /assets/airports/ and add a few lines of code in /assets/airports/airportLoadList.js

Feel free to ask more questions if I'm not being very clear!

n8rzz commented 7 years ago

@Fechulo good news, with v3.1.0 you only need to add new airports to the airportLoadList.js file.

@T0mmy09 you could also try installing node and running locally with the built in server. see: https://github.com/zlsa/atc/tree/gh-pages/tools for more information on that.

T0mmy09 commented 7 years ago

Gooood Morning :) i have installed GitHub for deskop (and i already donwloaded the folder ) and Python. i don't understand how can i do for running it. i can't find the right way xD

T0mmy09 commented 7 years ago

Zts LIPE.txt

this is a trial for Bologna's Airports, (i don't understand how can i do to trial it, if somebody want to check it, i'd be happy xD) i put inside the Aerdrome position, rwy, and fixes , then i have tried to build the first Rnav SID called FRZ "Florence".

I understand as follow: "sids": {

  "FRZ": {
  "icao": "FRZ",
  "name": "Firenze",
  "suffix": {"12":"7H", "30":"1Z"},     ( this is FRZ 7H for rwy 12 and FRZ 1z for Rwy 30? )
  "rwy": {
    "30": [],
    "12": [["PE601", "A40+"], "PE607", "PE614", "FRZ"]     (the real sid that the plane follow)

  },
  "body": [],                                                              ( and this i think that is the route after FRZ right?)
  "draw": ["PE601", "PE607", "PE614", "FRZ"]         (the line that we can see on the radar)

Thanks infinitely to everybody

willfrd commented 7 years ago

@T0mmy09 Looks fine the only thing I think is thatyou have to close the curly braces at the end:

      "FRZ": {
      "icao": "FRZ",
      "name": "Firenze",
      "suffix": {"12":"7H", "30":"Z"},
      "rwy": {
        "30": [],
        "12": [["PE601", "A40+"], "PE607", "PE614", "FRZ"]

      },
      "body": [],
      "draw": ["PE601", "PE607", "PE614", "FRZ"]
      }

By the way if under this SID you are going to insert another one don´t put } but }, only put } on the last SID. Hope it helps der this SID you are going to insert another one don´t put } but }, only put } on the last SID. Hope it helps.

T0mmy09 commented 7 years ago

Zts LIPE.txt

@n8rzz @Fechulo @willfrd Hello xD this is the last version, with fix sid star airspance... I try to insert some depp and arr traffic but i don't think that i do it right. i would like to ask if somebody are available to try it and explane how i can do to pubblish it.

Thank you very much

willfrd commented 7 years ago

Hey there, 1st of all please write "," always after a fix or airspace coordinate except of the las one example: Instead of:

"RIPDU", ["N44d37m21.00", "E010d28m30.00"]
    "ABTIM", ["N44d37m30.00", "E010d36m56.00"]
    "ADOLO", ["N44d35m42.00", "E011d07m21.97"]
    "ASDOR", ["N43d47m06.00", "E012d24m00.00"]
    "ASGUP", ["N44d37m29.00", "E011d02m22.00"]
    "ABLEX", ["N44d27m36.00", "E011d29m48.00"]
    "KREVA", ["N44d46m28.00", "E011d14m06.00"]

Write:

"RIPDU", ["N44d37m21.00", "E010d28m30.00"],
    "ABTIM", ["N44d37m30.00", "E010d36m56.00"],
    "ADOLO", ["N44d35m42.00", "E011d07m21.97"],
    "ASDOR", ["N43d47m06.00", "E012d24m00.00"],
    "ASGUP", ["N44d37m29.00", "E011d02m22.00"],
    "ABLEX", ["N44d27m36.00", "E011d29m48.00"],
    "KREVA", ["N44d46m28.00", "E011d14m06.00"]

In this example as KREVA is the last one it doesn't need a comma. 2nd please when you publish it in the pull request make sure its in .JSON format. 3rd, Have you managed to test it? because with my apache server it hasn't worked. About the traffic, quote of the wiki:

 "airlines": [
  ["BAW", 10],
  ["AAL/long", 2]
]

Select an aircraft from BAW's (British Airways) default fleet five
times as often as an aircraft is selected from AAL's (American
Airlines) long haul fleet.

What I do is I go to the website of flightradar for the airport I am doing and I also use the wikipedia site that has the destinations for that airport: Bologna airport flightradar24: https://www.flightradar24.com/airport/blq/arrivals/ Bologna airport wikipedia: https://en.wikipedia.org/wiki/Bologna_Guglielmo_Marconi_Airport/

Ohh and here you have the modifications I did (May need more modifications in order to work):

{
  "radio": {
    "twr": "Bologna Tower",
    "app": "Bologna Approach",
    "dep": "Bologna Radar"
  },
  "icao": "LIPE",
  "iata": "BLQ",
  "magnetic_north": 2.80,
  "ctr_radius": 74,
  "ctr_ceiling": 19500,
  "initial_alt": 5000,
  "position": ["N44d31m51.00", "E011d17m49.00", "123ft"],
  "rr_radius_nm": 5.0,
  "rr_center": ["N44d31m51.00", "E011d17m49.00"],
  "has_terrain": false,
  "wind": {
    "angle": 220,
    "speed": 2
  },
  "airspace": [
    {
      "floor": 0,
      "ceiling": 195,
      "airspace_class": "C",
      "poly": [
        ["N44d37m21.00", "E010d28m30.00"],
        ["N44d42m00.00", "E010d46m00.00"],
        ["N44d49m08.00", "E011d07m52.00"],
        ["N44d54m28.00", "E011d10m05.00"],
        ["N44d37m21.00", "E010d28m30.00"],
        ["N44d53m20.00", "E011d42m10.00"],
        ["N44d43m52.00", "E011d47m02.00"],
        ["N44d43m52.00", "E011d47m02.00"],
        ["N44d23m25.00", "E011d39m11.00"],
        ["N44d13m40.00", "E011d44m06.97"],
        ["N44d01m31.00", "E011d30m49.00"],
        ["N44d06m01.00", "E010d56m48.00"],
        ["N44d30m41.43", "E010d43m21.02"]
      ]
    }
 ],  
 "fixes": {
    "BOA", ["N44d32m13.00", "E011d17m26.000"],
    "RIPDU", ["N44d37m21.00", "E010d28m30.00"],
    "ABTIM", ["N44d37m30.00", "E010d36m56.00"],
    "ADOLO", ["N44d35m42.00", "E011d07m21.97"],
    "ASDOR", ["N43d47m06.00", "E012d24m00.00"],
    "ASGUP", ["N44d37m29.00", "E011d02m22.00"],
    "ABLEX", ["N44d27m36.00", "E011d29m48.00"],
    "KREVA", ["N44d46m28.00", "E011d14m06.00"],
    "IBNEL", ["N44d25m45.00", "E011d34m57.00"],
    "NEKOD", ["N44d40m22.00", "E011d25m33.99"],
    "BENUS", ["N44d54m25.00", "E011d12m12.99"],
    "BAMEK", ["N44d54m19.00", "E011d17m21.98"],
    "LARUD", ["N44d24m16.00", "E010d53m31.00"],
    "LUPOS", ["N44d30M16.99", "E010d34m52.96"],
    "LUMAV", ["N44d48m52.00", "E011d36m59.00"],
    "PELEG", ["N44d13m40.00", "E011d44m06.97"],
    "NIGSO", ["N44d23m35.00", "E010d42m40.00"],
    "ROXOK", ["N44d41m30.00", "E010d51m05m00"],
    "PE366", ["N44d30m41.43", "E010d43m21.02"],
    "PE367", ["N44d31m04.69", "E010d51m37.70"],
    "PE388", ["N44d18m40.85", "E011d36m57.00"],
    "PE411", ["N44d24m09.76", "E011d20m39.73"],
    "PE414", ["N44d32m07.11", "E010d58m36.43"],
    "PE416", ["N44d33m53.96", "E010d53m36.23"],
    "PE417", ["N44d36m07.59", "E010d47m20.29"],
    "PE419", ["N44d29m17.63", "E011d06m29.75"],
    "PE421", ["N44d39m16.15", "E010d57m21.14"],
    "PE431", ["N44d38m39.52", "E011d17m48.51"],
    "PE432", ["N44d40m50.04", "E011d11m45.38"],
    "PE433", ["N44d42m51.00", "E011d06m29.75"],
    "PE434", ["N44d44m41.18", "E011d01m09.29"],
    "PE436", ["N44d47m20.10", "E011d22m13.91"],
    "PE437", ["N44d43m16.02", "E011d20m13.83"],
    "PE441", ["N44d10m37.46", "E011d05m14.37"],
    "PE442", ["N44d20m43.72", "E011d10m55.85"],
    "PE451", ["N44d43m10.23", "E010d23m12.99"],
    "PE461", ["N44d35m01.69", "E011d27m47.27"],
    "PE463", ["N44d31m05.79", "E011d38m44.76"],
    "PE473", ["N44d20m24.00", "E011d31m09.42"],
    "PE474", ["N44d18m19.03", "E011d17m55.30"],
    "PE476", ["N44d15m22.29", "E011d26m54.06"],
    "PE601", ["N44d38m44.63", "E011d25m04.27"],
    "PE602", ["N44d37m19.23", "E011d16m23.14"],
    "PE603", ["N44d31m55.61", "E011d10m33.52"],
    "PE604", ["N44d26m45.91", "E011d05m00.58"],
    "PE606", ["N44d13m47.25", "E010d57m43.10"],
    "PE607", ["N44d32m37.03", "E011d26m54.42"],
    "PE608", ["N44d16m32.23", "E011d29m09.79"],
    "PE609", ["N44d44m11.65", "E011d23m00.25"],
    "PE611", ["N44d34m48.04", "E011d09m52.35"],
    "PE612", ["N44d37m29.15", "E011d02m21.65"],
    "PE614", ["N44d17m10.98", "E011d13m32.02"]
  },
  "runways": [
    {
      "name":        ["12", "30"],    
      "name_offset": [[0, 0], [0, 0]], 
      "end":         [["N44d32m24.01", "E011d16m33.55", "120ft"], ["N44d31m52.97", "E011d17m59.79", "120ft"]]                              
      "delay":       [15, 10],           
      "ils":         [true, true]     
    }
  },
  "sids": { 

    "FRZ": {
      "icao": "FRZ",
      "name": "Firenze",
      "suffix": {"12":"7H", "30":"Z"},
      "rwy": {
        "30": [],
        "12": [["PE601", "A40+"], "PE607", "PE614", "FRZ"],
       },
      "body": [],
      "draw": ["PE601", "PE607", "PE614", "FRZ"],
    },  
    "LUMAV": {
      "icao": "LUMAV",
      "name": "LUMAV",
      "suffix": {"12":"6X", "30":"5Z"},
      "rwy": {
        "30": [["PE611", "A24+"], "PE609", "LUMAV"],
        "12": [["PE601", "A40+"], "LUMAV"],  
       },
      "body": [],
      "draw": ["PE601", "LUMAV"], ["PE611", "PE609", "LUMAV"],
    },  
    "LUPOS": {
      "icao": "LUPOS",
      "name": "LUPOS",
      "suffix": {"12":"8H", "30":"6Z"},
      "rwy": {
        "30": [["PE611", "A24+"], "PE612", "PE366", "LUPOS"],
        "12": [["PE601", "A40+"], "PE607", "PE603", "PE366", "LUPOS"],  
       },
      "body": [],
      "draw": ["PE601", "PE607", "PE366", "LUPOS"], ["PE611", "PE612", "PE366"],
    },    
    "PELEG": {
      "icao": "PELEG",
      "name": "PELEG",
      "suffix": {"12":"6H", "30":"6Z"},
      "rwy": {
        "30": [["PE611", "A24+"], ["PE604", "A60+"], ["PE614", "A110+"], "PE608", "PELEG"],
        "12": [["PE601", "A40+"], "PE607", ["PE608", "A160+"], "PELEG"],  
       },
      "body": [],
      "draw": ["PE601", "PE607", "PE608", "PELEG"], ["PE611", "PE604", "PE614", "PE608", "PELEG"],
    } 
  },
  "stars": {
    "RIPDU": {
      "icao": "RIPDU1M",
      "name": "Ripdu one M",
      "body": [["RIPDU", "A60+|S250"], ["ABTIM", "A60|S250"], ["PE417", "A50|S220"], ["ROXOK", "A50|S230"], ["PE421", "A30|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["RIPDU", "ABTIM","PE417","ROXOK","PE421","ASGUP","ADOLO"]]
    }, 
    "NIGSO": {
      "icao": "RIPDU2M",
      "name": "Nigos 2M",
      "body": [["NIGSO", "A90+|S250"], ["LARUD", "A90|S250"], ["PE414", "A50|S220"], ["PE416", "A50|S230"], ["PE421", "A25|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["NIGSO", "LARUD", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]]
    }, 
    "FIRENZE": {
      "icao": "FRZ2M",
      "name": "Firenze 2M",
      "body": [["FRZ", "A90+|S250"], ["PE411", "A90+|S250"], ["PE442", "A90+|S250"], ["ELVEB", "A60|S230"], ["PE419", "A50|S250"], ["PE414", "A50|S250"], ["PE416", "A30|S250"], ["PE421", "A25|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["FRZ", "ELVEB", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]]
    }, 
    "PELEG": {
      "icao": "PELEG3M",
      "name": "Peleg 3M",
      "body": [["PELEG", "A90+|S250"], ["PE388", "A90|S250"], ["PE411", "A50+|S250"], ["ELVEB", "A50|S230"], ["PE419", "A50|S250"], ["PE414", "A50|S250"], ["PE416", "A30|S250"], ["PE421", "A25|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["PELEG", "PE388", "ELVEB", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]]
    },
    "LUMAV": {
      "icao": "LUMAV1M",
      "name": "Lumav 1M",
      "body": [["LUMAV", "A40+|S250"], ["PE436", "A40+|S250"], ["PE431", "A40|S250"], ["PE432", "A40|S250"], ["PE433", "A40|S250"], ["PE434", "A40|S250"], ["PE421", "A35|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["LUMAV", "PE436", "PE431", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]]
    },
    "BAMEK": {
      "icao": "BAMEK2M",
      "name": "Bamek 2M",
      "body": [["BAMEK", "A50|S250"], ["KREVA", "A50|S250"], ["PE432", "A40|S250"], ["PE433", "A40|S250"], ["PE434", "A40|S250"], ["PE421", "A35|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["BAMEK", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]]
    },
    "BENUS": {
      "icao": "BENUS1M",
      "name": "Benus 1M",
      "body": [["BENUS", "A60|S250"], ["KREVA", "A60|S250"], ["PE432", "A40|S250"], ["PE433", "A40|S250"], ["PE434", "A40|S250"], ["PE421", "A35|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["BENUS", "KREVA", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]]
    }
  },
  "departures": {
    "airlines": [
      ["aza/default", 10]
      ["ryr", 5]     
    ],
    "destinations": [
      "LUMAV", "FRZ", "LUPOS", "PELEG"
    ],
    "type": "rando",
    "frequency": [20] 
  },

  "arrivals": [
     "type": "random",               
     "route":   "FRZ.FRZ2M.LIPE", 
     "frequency": 10,              
     "altitude":  [10000, 16000], 
     "speed":    250,             
     "airlines":   
       ["aza/default", 10]
       ["ryr", 5]        

      ]
    }  
  ]
}

------------------------------

  "arrivals": [
    {   // Basic 1
      "type": "random",
      "radial": 170,        // the direction, in degrees, of arriving aircraft when they spawn; these will come from the south. ONLY use 'radial' with heading-based arrivals.
      "heading": 350,       // the direction airplanes will be pointing when they spawn; will be opposite of "radial" if omitted
      "frequency": 10,
      "altitude": 10000,
      "speed": 250,
      "airlines": [ ... ]
    },
    {   // Basic 2
      "type": "random",
      "fixes": ["MOVDD", "RISTI", "CEDES"],   // list of fixes to fly to after spawning.
      "frequency": 10,
      "altitude": 10000,
      "speed": 250,
      "airlines": [ ... ]
    },
    {   // Advanced, based on a route of flight (like a STAR, for example)
      "type": "random",               // options include 'random', 'cyclic', 'wave', and 'surge' (see below for descriptions)
      "route":   "QUINN.BDEGA2.KSFO", // route to follow (spawn at first point)
      "frequency": 10,              // spawn rate of this stream, in acph
      "altitude":  [20000, 24000],  // altitude to spawn at (either a value, or altitude range via array)
      "speed":    280,              // speed to spawn at
      "airlines": [ ... ]           // same as in "departures"
    },
    ...
  ]
}

Hope to see it working soon ^^

n8rzz commented 7 years ago

When you're ready to start testing, be sure to lint (check for errors) your json. Sometimes a missed comma can be hard to track down. http://jsonlint.com/

eliuuk commented 7 years ago

@willfrd Your waypoint format looks incorrect, it should be colons after the waypoint name.

"fixes": {
    "BOA":      ["N44d32m13.00", "E011d17m26.00"],
    "RIPDU":    ["N44d37m21.00", "E010d28m30.00"],
    "ABTIM":    ["N44d37m30.00", "E010d36m56.00"],
    "ADOLO":    ["N44d35m42.00", "E011d07m21.97"],
    "ASDOR":    ["N43d47m06.00", "E012d24m00.00"],
    "ASGUP":    ["N44d37m29.00", "E011d02m22.00"],
    "ABLEX":    ["N44d27m36.00", "E011d29m48.00"],
    "KREVA":    ["N44d46m28.00", "E011d14m06.00"],
    "IBNEL":    ["N44d25m45.00", "E011d34m57.00"],
    "NEKOD":    ["N44d40m22.00", "E011d25m33.99"],
    "BENUS":    ["N44d54m25.00", "E011d12m12.99"],
    "BAMEK":    ["N44d54m19.00", "E011d17m21.98"],
    "LARUD":    ["N44d24m16.00", "E010d53m31.00"],
    "LUPOS":    ["N44d30M16.99", "E010d34m52.96"],
    "LUMAV":    ["N44d48m52.00", "E011d36m59.00"],
    "PELEG":    ["N44d13m40.00", "E011d44m06.97"],
    "NIGSO":    ["N44d23m35.00", "E010d42m40.00"],
    "ROXOK":    ["N44d41m30.00", "E010d51m05.00"],
    "PE366":    ["N44d30m41.43", "E010d43m21.02"],
    "PE367":    ["N44d31m04.69", "E010d51m37.70"],
    "PE388":    ["N44d18m40.85", "E011d36m57.00"],
    "PE411":    ["N44d24m09.76", "E011d20m39.73"],
    "PE414":    ["N44d32m07.11", "E010d58m36.43"],
    "PE416":    ["N44d33m53.96", "E010d53m36.23"],
    "PE417":    ["N44d36m07.59", "E010d47m20.29"],
    "PE419":    ["N44d29m17.63", "E011d06m29.75"],
    "PE421":    ["N44d39m16.15", "E010d57m21.14"],
    "PE431":    ["N44d38m39.52", "E011d17m48.51"],
    "PE432":    ["N44d40m50.04", "E011d11m45.38"],
    "PE433":    ["N44d42m51.00", "E011d06m29.75"],
    "PE434":    ["N44d44m41.18", "E011d01m09.29"],
    "PE436":    ["N44d47m20.10", "E011d22m13.91"],
    "PE437":    ["N44d43m16.02", "E011d20m13.83"],
    "PE441":    ["N44d10m37.46", "E011d05m14.37"],
    "PE442":    ["N44d20m43.72", "E011d10m55.85"],
    "PE451":    ["N44d43m10.23", "E010d23m12.99"],
    "PE461":    ["N44d35m01.69", "E011d27m47.27"],
    "PE463":    ["N44d31m05.79", "E011d38m44.76"],
    "PE473":    ["N44d20m24.00", "E011d31m09.42"],
    "PE474":    ["N44d18m19.03", "E011d17m55.30"],
    "PE476":    ["N44d15m22.29", "E011d26m54.06"],
    "PE601":    ["N44d38m44.63", "E011d25m04.27"],
    "PE602":    ["N44d37m19.23", "E011d16m23.14"],
    "PE603":    ["N44d31m55.61", "E011d10m33.52"],
    "PE604":    ["N44d26m45.91", "E011d05m00.58"],
    "PE606":    ["N44d13m47.25", "E010d57m43.10"],
    "PE607":    ["N44d32m37.03", "E011d26m54.42"],
    "PE608":    ["N44d16m32.23", "E011d29m09.79"],
    "PE609":    ["N44d44m11.65", "E011d23m00.25"],
    "PE611":    ["N44d34m48.04", "E011d09m52.35"],
    "PE612":    ["N44d37m29.15", "E011d02m21.65"],
    "PE614":    ["N44d17m10.98", "E011d13m32.02"]
  },

I did one additonal small change, where a decimal place was missing.

eliuuk commented 7 years ago

This should be a stable version: lipe.zip

You need to ensure that your commas are used correctly, and that your brackets match up. Also, just make sure that you add in the waypoints FRZ and ELVEB, as they are not in your waypoint list.

T0mmy09 commented 7 years ago

@indianbhaji @n8rzz @willfrd Thanks everybody for helping. ` Lipe.txt

i have updated the file, checked fixes (eleveb Frz). i ' m not able/understand how to run it in local server (it's not running) so i can't try it, i don't understand how can i create a reale traffic sequence for departure and arrival. ["aza/default", 10]

if i don't write default, i will have all type of aircraft of this company? the number at the ends, what it's means?

i fear that i'l creat a busy sequence, can i copy a sequence from another scenery? for catch the right traffic frequency

Thanks a lot

willfrd commented 7 years ago

@T0mmy09, Fixed some syntax errors, instead of:

      "body": [["RIPDU", "A60+|S250"], ["ABTIM", "A60|S250"], ["PE417", "A50|S220"], ["ROXOK", "A50|S230"], ["PE421", "A30|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"], 
      "draw": [["RIPDU", "ABTIM","PE417","ROXOK","PE421","ASGUP","ADOLO"]]

It should be changed to:

      "body": [["RIPDU", "A60+|S250"], ["ABTIM", "A60|S250"], ["PE417", "A50|S220"], ["ROXOK", "A50|S230"], ["PE421", "A30|S210"], ["ASGUP", "A25|S210"], ["ADOLO", "A25|S210"]],
      "draw": [["RIPDU", "ABTIM","PE417","ROXOK","PE421","ASGUP","ADOLO"]]

In http://jsonlint.com/ it already says Valid JSON but maybe it may need some more fixes (or I changed something I shouldn´t have) it still doesn´t work for me... Here you have a version with the changes:

{
    "radio": {
        "twr": "Bologna Tower",
        "app": "Bologna Approach",
        "dep": "Bologna Radar"
    },
    "icao": "LIPE",
    "iata": "BLQ",
    "magnetic_north": 2.80,
    "ctr_radius": 74,
    "ctr_ceiling": 19500,
    "initial_alt": 5000,
    "position": ["N44d31m51.00", "E011d17m49.00", "123ft"],
    "rr_radius_nm": 5.0,
    "rr_center": ["N44d31m51.00", "E011d17m49.00"],
    "has_terrain": false,
    "wind": {
        "angle": 220,
        "speed": 2
    },
    "airspace": [{
        "floor": 0,
        "ceiling": 195,
        "airspace_class": "C",
        "poly": [
            ["N44d37m21.00", "E010d28m30.00"],
            ["N44d42m00.00", "E010d46m00.00"],
            ["N44d49m08.00", "E011d07m52.00"],
            ["N44d54m28.00", "E011d10m05.00"],
            ["N44d37m21.00", "E010d28m30.00"],
            ["N44d53m20.00", "E011d42m10.00"],
            ["N44d43m52.00", "E011d47m02.00"],
            ["N44d43m52.00", "E011d47m02.00"],
            ["N44d23m25.00", "E011d39m11.00"],
            ["N44d13m40.00", "E011d44m06.97"],
            ["N44d01m31.00", "E011d30m49.00"],
            ["N44d06m01.00", "E010d56m48.00"],
            ["N44d30m41.43", "E010d43m21.02"]
        ]
    }],
    "fixes": {
        "BOA": ["N44d32m13.00", "E011d17m26.00"],
        "FRZ": ["N44d01m38.20", "E011d00m12.49"],
        "ELVEB": ["N44d26m28.00", "E011d14m11.00"],
        "RIPDU": ["N44d37m21.00", "E010d28m30.00"],
        "ABTIM": ["N44d37m30.00", "E010d36m56.00"],
        "ADOLO": ["N44d35m42.00", "E011d07m21.97"],
        "ASDOR": ["N43d47m06.00", "E012d24m00.00"],
        "ASGUP": ["N44d37m29.00", "E011d02m22.00"],
        "ABLEX": ["N44d27m36.00", "E011d29m48.00"],
        "KREVA": ["N44d46m28.00", "E011d14m06.00"],
        "IBNEL": ["N44d25m45.00", "E011d34m57.00"],
        "NEKOD": ["N44d40m22.00", "E011d25m33.99"],
        "BENUS": ["N44d54m25.00", "E011d12m12.99"],
        "BAMEK": ["N44d54m19.00", "E011d17m21.98"],
        "LARUD": ["N44d24m16.00", "E010d53m31.00"],
        "LUPOS": ["N44d30M16.99", "E010d34m52.96"],
        "LUMAV": ["N44d48m52.00", "E011d36m59.00"],
        "PELEG": ["N44d13m40.00", "E011d44m06.97"],
        "NIGSO": ["N44d23m35.00", "E010d42m40.00"],
        "ROXOK": ["N44d41m30.00", "E010d51m05.00"],
        "PE366": ["N44d30m41.43", "E010d43m21.02"],
        "PE367": ["N44d31m04.69", "E010d51m37.70"],
        "PE388": ["N44d18m40.85", "E011d36m57.00"],
        "PE411": ["N44d24m09.76", "E011d20m39.73"],
        "PE414": ["N44d32m07.11", "E010d58m36.43"],
        "PE416": ["N44d33m53.96", "E010d53m36.23"],
        "PE417": ["N44d36m07.59", "E010d47m20.29"],
        "PE419": ["N44d29m17.63", "E011d06m29.75"],
        "PE421": ["N44d39m16.15", "E010d57m21.14"],
        "PE431": ["N44d38m39.52", "E011d17m48.51"],
        "PE432": ["N44d40m50.04", "E011d11m45.38"],
        "PE433": ["N44d42m51.00", "E011d06m29.75"],
        "PE434": ["N44d44m41.18", "E011d01m09.29"],
        "PE436": ["N44d47m20.10", "E011d22m13.91"],
        "PE437": ["N44d43m16.02", "E011d20m13.83"],
        "PE441": ["N44d10m37.46", "E011d05m14.37"],
        "PE442": ["N44d20m43.72", "E011d10m55.85"],
        "PE451": ["N44d43m10.23", "E010d23m12.99"],
        "PE461": ["N44d35m01.69", "E011d27m47.27"],
        "PE463": ["N44d31m05.79", "E011d38m44.76"],
        "PE473": ["N44d20m24.00", "E011d31m09.42"],
        "PE474": ["N44d18m19.03", "E011d17m55.30"],
        "PE476": ["N44d15m22.29", "E011d26m54.06"],
        "PE601": ["N44d38m44.63", "E011d25m04.27"],
        "PE602": ["N44d37m19.23", "E011d16m23.14"],
        "PE603": ["N44d31m55.61", "E011d10m33.52"],
        "PE604": ["N44d26m45.91", "E011d05m00.58"],
        "PE606": ["N44d13m47.25", "E010d57m43.10"],
        "PE607": ["N44d32m37.03", "E011d26m54.42"],
        "PE608": ["N44d16m32.23", "E011d29m09.79"],
        "PE609": ["N44d44m11.65", "E011d23m00.25"],
        "PE611": ["N44d34m48.04", "E011d09m52.35"],
        "PE612": ["N44d37m29.15", "E011d02m21.65"],
        "PE614": ["N44d17m10.98", "E011d13m32.02"]
    },
    "runways": [{
        "name": ["12", "30"],
        "name_offset": [
            [0, 0],
            [0, 0]
        ],
        "end": [
            ["N44d32m24.01", "E011d16m33.55", "120ft"],
            ["N44d31m52.97", "E011d17m59.79", "120ft"]
        ],
        "delay": [15, 10],
        "ils": [true, true]
    }],
    "sids": {

        "FRZ": {
            "icao": "FRZ",
            "name": "Firenze",
            "suffix": {
                "12": "7H",
                "30": "Z"
            },
            "rwy": {
                "30": [],
                "12": [
                    ["PE601", "A40+"], "PE607", "PE614", "FRZ"
                ]
            },
            "body": [],
            "draw": ["PE601", "PE607", "PE614", "FRZ"]
        },
        "LUMAV": {
            "icao": "LUMAV",
            "name": "LUMAV",
            "suffix": {
                "12": "6X",
                "30": "5Z"
            },
            "rwy": {
                "30": [
                    ["PE611", "A24+"], "PE609", "LUMAV"
                ],
                "12": [
                    ["PE601", "A40+"], "LUMAV"
                ]
            },
            "body": [],
            "draw": [
                ["PE601", "LUMAV"],
                ["PE611", "PE609", "LUMAV"]
            ]
        },
        "LUPOS": {
            "icao": "LUPOS",
            "name": "LUPOS",
            "suffix": {
                "12": "8H",
                "30": "6Z"
            },
            "rwy": {
                "30": [
                    ["PE611", "A24+"], "PE612", "PE366", "LUPOS"
                ],
                "12": [
                    ["PE601", "A40+"], "PE607", "PE603", "PE366", "LUPOS"
                ]
            },
            "body": [],
            "draw": [
                ["PE601", "PE607", "PE366", "LUPOS"],
                ["PE611", "PE612", "PE366"]
            ]
        },
        "PELEG": {
            "icao": "PELEG",
            "name": "PELEG",
            "suffix": {
                "12": "6H",
                "30": "6Z"
            },
            "rwy": {
                "30": [
                    ["PE611", "A24+"],
                    ["PE604", "A60+"],
                    ["PE614", "A110+"], "PE608", "PELEG"
                ],
                "12": [
                    ["PE601", "A40+"], "PE607", ["PE608", "A160+"], "PELEG"
                ]
            },
            "body": [],
            "draw": [
                ["PE601", "PE607", "PE608", "PELEG"],
                ["PE611", "PE604", "PE614", "PE608", "PELEG"]
            ]
        }
    },
    "stars": {
        "RIPDU": {
            "icao": "RIPDU1M",
            "name": "Ripdu one M",
            "body": [
                ["RIPDU", "A60+|S250"],
                ["ABTIM", "A60|S250"],
                ["PE417", "A50|S220"],
                ["ROXOK", "A50|S230"],
                ["PE421", "A30|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["RIPDU", "ABTIM", "PE417", "ROXOK", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "NIGSO": {
            "icao": "RIPDU2M",
            "name": "Nigos 2M",
            "body": [
                ["NIGSO", "A90+|S250"],
                ["LARUD", "A90|S250"],
                ["PE414", "A50|S220"],
                ["PE416", "A50|S230"],
                ["PE421", "A25|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["NIGSO", "LARUD", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "FIRENZE": {
            "icao": "FRZ2M",
            "name": "Firenze 2M",
            "body": [
                ["FRZ", "A90+|S250"],
                ["PE411", "A90+|S250"],
                ["PE442", "A90+|S250"],
                ["ELVEB", "A60|S230"],
                ["PE419", "A50|S250"],
                ["PE414", "A50|S250"],
                ["PE416", "A30|S250"],
                ["PE421", "A25|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["FRZ", "ELVEB", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "PELEG": {
            "icao": "PELEG3M",
            "name": "Peleg 3M",
            "body": [
                ["PELEG", "A90+|S250"],
                ["PE388", "A90|S250"],
                ["PE411", "A50+|S250"],
                ["ELVEB", "A50|S230"],
                ["PE419", "A50|S250"],
                ["PE414", "A50|S250"],
                ["PE416", "A30|S250"],
                ["PE421", "A25|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["PELEG", "PE388", "ELVEB", "PE414", "PE416", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "LUMAV": {
            "icao": "LUMAV1M",
            "name": "Lumav 1M",
            "body": [
                ["LUMAV", "A40+|S250"],
                ["PE436", "A40+|S250"],
                ["PE431", "A40|S250"],
                ["PE432", "A40|S250"],
                ["PE433", "A40|S250"],
                ["PE434", "A40|S250"],
                ["PE421", "A35|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["LUMAV", "PE436", "PE431", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "BAMEK": {
            "icao": "BAMEK2M",
            "name": "Bamek 2M",
            "body": [
                ["BAMEK", "A50|S250"],
                ["KREVA", "A50|S250"],
                ["PE432", "A40|S250"],
                ["PE433", "A40|S250"],
                ["PE434", "A40|S250"],
                ["PE421", "A35|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["BAMEK", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]
            ]
        },
        "BENUS": {
            "icao": "BENUS1M",
            "name": "Benus 1M",
            "body": [
                ["BENUS", "A60|S250"],
                ["KREVA", "A60|S250"],
                ["PE432", "A40|S250"],
                ["PE433", "A40|S250"],
                ["PE434", "A40|S250"],
                ["PE421", "A35|S210"],
                ["ASGUP", "A25|S210"],
                ["ADOLO", "A25|S210"]
            ],
            "draw": [
                ["BENUS", "KREVA", "PE432", "PE433", "PE434", "PE421", "ASGUP", "ADOLO"]
            ]
        }
    },
    "departures": {
        "airlines": [
            ["aza", 10],
            ["ibe", 8],
            ["ryr", 7]
        ],
        "destinations": [
            "LUMAV", "FRZ", "LUPOS", "PELEG"
        ],
        "type": "random",
        "frequency": [20]
    },

    "arrivals": [{
        "type": "random",
        "route": "FRZ.FRZ2M.LIPE",
        "frequency": 10,
        "altitude": [10000, 16000],
        "speed": 250,
        "airlines": [
            ["aza", 10],
            ["ryr", 5]
        ]
    }
]
}

Greetings

n8rzz commented 7 years ago

So this will get the map to render:

{
    "radio": {
        "twr": "Bologna Tower",
        "app": "Bologna Approach",
        "dep": "Bologna Radar"
    },
    "icao": "LIPE",
    "iata": "BLQ",
    "magnetic_north": 2.8,
    "ctr_radius": 74,
    "ctr_ceiling": 19500,
    "initial_alt": 5000,
    "position": [
        "N44d31m51.00",
        "E011d17m49.00",
        "123ft"
    ],
    "rr_radius_nm": 5,
    "rr_center": [
        "N44d31m51.00",
        "E011d17m49.00"
    ],
    "has_terrain": false,
    "wind": {
        "angle": 220,
        "speed": 2
    },
    "airspace": [
        {
            "floor": 0,
            "ceiling": 195,
            "airspace_class": "C",
            "poly": [
                [
                    "N44d37m21.00",
                    "E010d28m30.00"
                ],
                [
                    "N44d42m00.00",
                    "E010d46m00.00"
                ],
                [
                    "N44d49m08.00",
                    "E011d07m52.00"
                ],
                [
                    "N44d54m28.00",
                    "E011d10m05.00"
                ],
                [
                    "N44d37m21.00",
                    "E010d28m30.00"
                ],
                [
                    "N44d53m20.00",
                    "E011d42m10.00"
                ],
                [
                    "N44d43m52.00",
                    "E011d47m02.00"
                ],
                [
                    "N44d43m52.00",
                    "E011d47m02.00"
                ],
                [
                    "N44d23m25.00",
                    "E011d39m11.00"
                ],
                [
                    "N44d13m40.00",
                    "E011d44m06.97"
                ],
                [
                    "N44d01m31.00",
                    "E011d30m49.00"
                ],
                [
                    "N44d06m01.00",
                    "E010d56m48.00"
                ],
                [
                    "N44d30m41.43",
                    "E010d43m21.02"
                ]
            ]
        }
    ],
    "fixes": {
        "BOA": [
            "N44d32m13.00",
            "E011d17m26.00"
        ],
        "FRZ": [
            "N44d01m38.20",
            "E011d00m12.49"
        ],
        "ELVEB": [
            "N44d26m28.00",
            "E011d14m11.00"
        ],
        "RIPDU": [
            "N44d37m21.00",
            "E010d28m30.00"
        ],
        "ABTIM": [
            "N44d37m30.00",
            "E010d36m56.00"
        ],
        "ADOLO": [
            "N44d35m42.00",
            "E011d07m21.97"
        ],
        "ASDOR": [
            "N43d47m06.00",
            "E012d24m00.00"
        ],
        "ASGUP": [
            "N44d37m29.00",
            "E011d02m22.00"
        ],
        "ABLEX": [
            "N44d27m36.00",
            "E011d29m48.00"
        ],
        "KREVA": [
            "N44d46m28.00",
            "E011d14m06.00"
        ],
        "IBNEL": [
            "N44d25m45.00",
            "E011d34m57.00"
        ],
        "NEKOD": [
            "N44d40m22.00",
            "E011d25m33.99"
        ],
        "BENUS": [
            "N44d54m25.00",
            "E011d12m12.99"
        ],
        "BAMEK": [
            "N44d54m19.00",
            "E011d17m21.98"
        ],
        "LARUD": [
            "N44d24m16.00",
            "E010d53m31.00"
        ],
        "LUPOS": [
            "N44d30M16.99",
            "E010d34m52.96"
        ],
        "LUMAV": [
            "N44d48m52.00",
            "E011d36m59.00"
        ],
        "PELEG": [
            "N44d13m40.00",
            "E011d44m06.97"
        ],
        "NIGSO": [
            "N44d23m35.00",
            "E010d42m40.00"
        ],
        "ROXOK": [
            "N44d41m30.00",
            "E010d51m05.00"
        ],
        "PE366": [
            "N44d30m41.43",
            "E010d43m21.02"
        ],
        "PE367": [
            "N44d31m04.69",
            "E010d51m37.70"
        ],
        "PE388": [
            "N44d18m40.85",
            "E011d36m57.00"
        ],
        "PE411": [
            "N44d24m09.76",
            "E011d20m39.73"
        ],
        "PE414": [
            "N44d32m07.11",
            "E010d58m36.43"
        ],
        "PE416": [
            "N44d33m53.96",
            "E010d53m36.23"
        ],
        "PE417": [
            "N44d36m07.59",
            "E010d47m20.29"
        ],
        "PE419": [
            "N44d29m17.63",
            "E011d06m29.75"
        ],
        "PE421": [
            "N44d39m16.15",
            "E010d57m21.14"
        ],
        "PE431": [
            "N44d38m39.52",
            "E011d17m48.51"
        ],
        "PE432": [
            "N44d40m50.04",
            "E011d11m45.38"
        ],
        "PE433": [
            "N44d42m51.00",
            "E011d06m29.75"
        ],
        "PE434": [
            "N44d44m41.18",
            "E011d01m09.29"
        ],
        "PE436": [
            "N44d47m20.10",
            "E011d22m13.91"
        ],
        "PE437": [
            "N44d43m16.02",
            "E011d20m13.83"
        ],
        "PE441": [
            "N44d10m37.46",
            "E011d05m14.37"
        ],
        "PE442": [
            "N44d20m43.72",
            "E011d10m55.85"
        ],
        "PE451": [
            "N44d43m10.23",
            "E010d23m12.99"
        ],
        "PE461": [
            "N44d35m01.69",
            "E011d27m47.27"
        ],
        "PE463": [
            "N44d31m05.79",
            "E011d38m44.76"
        ],
        "PE473": [
            "N44d20m24.00",
            "E011d31m09.42"
        ],
        "PE474": [
            "N44d18m19.03",
            "E011d17m55.30"
        ],
        "PE476": [
            "N44d15m22.29",
            "E011d26m54.06"
        ],
        "PE601": [
            "N44d38m44.63",
            "E011d25m04.27"
        ],
        "PE602": [
            "N44d37m19.23",
            "E011d16m23.14"
        ],
        "PE603": [
            "N44d31m55.61",
            "E011d10m33.52"
        ],
        "PE604": [
            "N44d26m45.91",
            "E011d05m00.58"
        ],
        "PE606": [
            "N44d13m47.25",
            "E010d57m43.10"
        ],
        "PE607": [
            "N44d32m37.03",
            "E011d26m54.42"
        ],
        "PE608": [
            "N44d16m32.23",
            "E011d29m09.79"
        ],
        "PE609": [
            "N44d44m11.65",
            "E011d23m00.25"
        ],
        "PE611": [
            "N44d34m48.04",
            "E011d09m52.35"
        ],
        "PE612": [
            "N44d37m29.15",
            "E011d02m21.65"
        ],
        "PE614": [
            "N44d17m10.98",
            "E011d13m32.02"
        ]
    },
    "runways": [
        {
            "name": [
                "12",
                "30"
            ],
            "name_offset": [
                [
                    0,
                    0
                ],
                [
                    0,
                    0
                ]
            ],
            "end": [
                [
                    "N44d32m24.01",
                    "E011d16m33.55",
                    "120ft"
                ],
                [
                    "N44d31m52.97",
                    "E011d17m59.79",
                    "120ft"
                ]
            ],
            "delay": [
                15,
                10
            ],
            "ils": [
                true,
                true
            ]
        }
    ],
    "sids": {
        "FRZ": {
            "icao": "FRZ",
            "name": "Firenze",
            "suffix": {
                "12": "7H",
                "30": "Z"
            },
            "rwy": {
                "12": [
                    [
                        "PE601",
                        "A40+"
                    ],
                    "PE607",
                    "PE614"
                ],
                "30": []
            },
            "body": [["FRZ"]],
            "draw": [["PE601", "PE607", "PE614", "FRZ"]]
        },
        "LUMAV": {
            "icao": "LUMAV",
            "name": "LUMAV",
            "suffix": {
                "12": "6X",
                "30": "5Z"
            },
            "rwy": {
                "12": [
                    [
                        "PE601",
                        "A40+"
                    ],
                    "LUMAV"
                ],
                "30": [
                    [
                        "PE611",
                        "A24+"
                    ],
                    "PE609"
                ]
            },
            "body": [["LUMAV"]],
            "draw": [
                [
                    "PE601",
                    "LUMAV"
                ],
                [
                    "PE611",
                    "PE609",
                    "LUMAV"
                ]
            ]
        },
        "LUPOS": {
            "icao": "LUPOS",
            "name": "LUPOS",
            "suffix": {
                "12": "8H",
                "30": "6Z"
            },
            "rwy": {
                "12": [
                    [
                        "PE601",
                        "A40+"
                    ],
                    "PE607",
                    "PE603",
                    "PE366",
                    "LUPOS"
                ],
                "30": [
                    [
                        "PE611",
                        "A24+"
                    ],
                    "PE612",
                    "PE366"
                ]
            },
            "body": [["LUPOS"]],
            "draw": [
                [
                    "PE601",
                    "PE607",
                    "PE366",
                    "LUPOS"
                ],
                [
                    "PE611",
                    "PE612",
                    "PE366"
                ]
            ]
        },
        "PELEG": {
            "icao": "PELEG",
            "name": "PELEG",
            "suffix": {
                "12": "6H",
                "30": "6Z"
            },
            "rwy": {
                "12": [
                    [
                        "PE601",
                        "A40+"
                    ],
                    "PE607",
                    [
                        "PE608",
                        "A160+"
                    ]
                ],
                "30": [
                    [
                        "PE611",
                        "A24+"
                    ],
                    [
                        "PE604",
                        "A60+"
                    ],
                    [
                        "PE614",
                        "A110+"
                    ],
                    "PE608"
                ]
            },
            "body": [["PELEG"]],
            "draw": [
                [
                    "PE601",
                    "PE607",
                    "PE608",
                    "PELEG"
                ],
                [
                    "PE611",
                    "PE604",
                    "PE614",
                    "PE608",
                    "PELEG"
                ]
            ]
        }
    },
    "stars": {
        "RIPDU": {
            "icao": "RIPDU1M",
            "name": "Ripdu one M",
            "body": [
                [
                    "RIPDU",
                    "A60+|S250"
                ],
                [
                    "ABTIM",
                    "A60|S250"
                ],
                [
                    "PE417",
                    "A50|S220"
                ],
                [
                    "ROXOK",
                    "A50|S230"
                ],
                [
                    "PE421",
                    "A30|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "RIPDU",
                    "ABTIM",
                    "PE417",
                    "ROXOK",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "NIGSO": {
            "icao": "RIPDU2M",
            "name": "Nigos 2M",
            "body": [
                [
                    "NIGSO",
                    "A90+|S250"
                ],
                [
                    "LARUD",
                    "A90|S250"
                ],
                [
                    "PE414",
                    "A50|S220"
                ],
                [
                    "PE416",
                    "A50|S230"
                ],
                [
                    "PE421",
                    "A25|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "NIGSO",
                    "LARUD",
                    "PE414",
                    "PE416",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "FIRENZE": {
            "icao": "FRZ2M",
            "name": "Firenze 2M",
            "body": [
                [
                    "FRZ",
                    "A90+|S250"
                ],
                [
                    "PE411",
                    "A90+|S250"
                ],
                [
                    "PE442",
                    "A90+|S250"
                ],
                [
                    "ELVEB",
                    "A60|S230"
                ],
                [
                    "PE419",
                    "A50|S250"
                ],
                [
                    "PE414",
                    "A50|S250"
                ],
                [
                    "PE416",
                    "A30|S250"
                ],
                [
                    "PE421",
                    "A25|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "FRZ",
                    "ELVEB",
                    "PE414",
                    "PE416",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "PELEG": {
            "icao": "PELEG3M",
            "name": "Peleg 3M",
            "body": [
                [
                    "PELEG",
                    "A90+|S250"
                ],
                [
                    "PE388",
                    "A90|S250"
                ],
                [
                    "PE411",
                    "A50+|S250"
                ],
                [
                    "ELVEB",
                    "A50|S230"
                ],
                [
                    "PE419",
                    "A50|S250"
                ],
                [
                    "PE414",
                    "A50|S250"
                ],
                [
                    "PE416",
                    "A30|S250"
                ],
                [
                    "PE421",
                    "A25|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "PELEG",
                    "PE388",
                    "ELVEB",
                    "PE414",
                    "PE416",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "LUMAV": {
            "icao": "LUMAV1M",
            "name": "Lumav 1M",
            "body": [
                [
                    "LUMAV",
                    "A40+|S250"
                ],
                [
                    "PE436",
                    "A40+|S250"
                ],
                [
                    "PE431",
                    "A40|S250"
                ],
                [
                    "PE432",
                    "A40|S250"
                ],
                [
                    "PE433",
                    "A40|S250"
                ],
                [
                    "PE434",
                    "A40|S250"
                ],
                [
                    "PE421",
                    "A35|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "LUMAV",
                    "PE436",
                    "PE431",
                    "PE432",
                    "PE433",
                    "PE434",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "BAMEK": {
            "icao": "BAMEK2M",
            "name": "Bamek 2M",
            "body": [
                [
                    "BAMEK",
                    "A50|S250"
                ],
                [
                    "KREVA",
                    "A50|S250"
                ],
                [
                    "PE432",
                    "A40|S250"
                ],
                [
                    "PE433",
                    "A40|S250"
                ],
                [
                    "PE434",
                    "A40|S250"
                ],
                [
                    "PE421",
                    "A35|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "BAMEK",
                    "PE432",
                    "PE433",
                    "PE434",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        },
        "BENUS": {
            "icao": "BENUS1M",
            "name": "Benus 1M",
            "body": [
                [
                    "BENUS",
                    "A60|S250"
                ],
                [
                    "KREVA",
                    "A60|S250"
                ],
                [
                    "PE432",
                    "A40|S250"
                ],
                [
                    "PE433",
                    "A40|S250"
                ],
                [
                    "PE434",
                    "A40|S250"
                ],
                [
                    "PE421",
                    "A35|S210"
                ],
                [
                    "ASGUP",
                    "A25|S210"
                ],
                [
                    "ADOLO",
                    "A25|S210"
                ]
            ],
            "draw": [
                [
                    "BENUS",
                    "KREVA",
                    "PE432",
                    "PE433",
                    "PE434",
                    "PE421",
                    "ASGUP",
                    "ADOLO"
                ]
            ]
        }
    },
    "departures": {
        "airlines": [
            [
                "aza",
                10
            ],
            [
                "ibe",
                8
            ],
            [
                "ryr",
                7
            ]
        ],
        "destinations": [
            "LUMAV",
            "FRZ",
            "LUPOS",
            "PELEG"
        ],
        "type": "random",
        "frequency": [
            20
        ]
    },
    "arrivals": [
        {
            "type": "random",
            "route": "FRZ.FRZ2M.LIPE",
            "frequency": 10,
            "altitude": [
                10000,
                16000
            ],
            "speed": 250,
            "airlines": [
                [
                    "aza",
                    10
                ],
                [
                    "ryr",
                    5
                ]
            ]
        }
    ]
}

I changed a few things in the sids and, to be honest, I've never made an airport. So I'm no expert. I do know that there were errors parsing the list of fixes due to how the data was formatted.

There are still more errors, so you're not quite out of the woods yet: [ INFO ] Unable to parse coordinate N44d30M16.99

It also looks like the map not quite right:

screen shot 2016-11-28 at 3 16 57 pm

It also appears there is an error with the LUPOS fix coordinates (probably due to the parsing error above).

You're making progress, keep at it and you'll get there soon! Good Luck!!

T0mmy09 commented 7 years ago

Lipe.txt @willfrd thank you very much! @n8rzz thanks to the prewiev of the air space fixed Lupos bag fixed air space erros ( ripdu - east beem benus - north lumav..) now it s time to try the traffic :) i hope

erikquinn commented 7 years ago

The ATC repository is being migrated to it's new home at https://github.com/openscope/openscope, and thus, all issues are being closed. If this is still an issue with the latest version of the sim (accessible at http://www.openscope.co), or is a feature you still think we are lacking, please reopen the issue at the new repo.

Please note that the vast majority of these issues have been copied to the new repository, or else are covered by other issues created there. See the below screenshot for what it looks like when your issue is known in the new repo:

image

Thank you!

Closing this issue.