-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"No altitude assigned" message #760
Comments
@panther2 I'm not seeing this issue. Could you verify that there is indeed a problem? When I follow the above steps at EDDM, they take off normally for me. |
That's strange. I just went to Works fine at KSFO. At KSFO the indication on the strip changes from for example MOLEN7 to MOLEN7.ENI after the caf command. This does not happen at EDDM, either. For example OLASO does not change to OLASO.OLASO I cannot assign SID's, either. When entering It works perfectly on https://zlsa.github.io/atc/ I have now also tested it using a different notebook with ChromeOS. |
It actually should not become OLASO.OLASO anyways, the .blah is for a transition name, normally
…On 13 Dec 2016, 22:01 +0000, ***@***.*** ***@***.***>, wrote:
That's strange.
I just went to
https://atc-release.herokuapp.com/
changed to EDDM
and repeated the above steps again.
Again "no altitude assigned"
Works fine at KSFO. At KSFO the indication on the strip changes from for example MOLEN7 to MOLEN7.ENI after the caf command. This does not happen at EDDM, either. For example OLASO does not change to OLASO.OLASO
It works perfecty on https://zlsa.github.io/atc/
Here OLASO changes to OLASO.OLASO after caf.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub (#760 (comment)), or mute the thread (https://github.com/notifications/unsubscribe-auth/ASgmWAuQLsDSCbQ0atfakBTW9rtCb9Zaks5rHxWigaJpZM4LMRC8).
|
yeah, sorry you're completely right. I accidentally went to zlsa.github.io/atc. I'm a dummy! This issue is definitely valid. |
Thanks for your confirmation. |
tracked this into if (!standardRouteModel.hasFixName(this.rwy_dep)) {
return ['fail', `unable, the ${standardRouteModel.name} departure not valid from Runway ${this.rwy_dep}`];
} the routeModel is not picking up the |
ah hah, these routes don't have either one of /**
* Determine if the `standardRoute` is a sid or a star and build the entry/exit collections
* with the correct data.
*
* STARS will have `entryPoints` defined so `rwy` becomes the `_exitCollection`
* SIDS will have `exitPoints` defined so `rwy` becomes the `_entryCollection`
*
* @for StandardRouteModel
* @method _buildEntryAndExitCollections
* @param standardRoute
* @private
*/
_buildEntryAndExitCollections(standardRoute) {
if (_has(standardRoute, 'entryPoints')) {
this._entryCollection = this._buildSegmentCollection(standardRoute.entryPoints);
this._exitCollection = this._buildSegmentCollection(standardRoute.rwy);
} else if (_has(standardRoute, 'exitPoints')) {
this._entryCollection = this._buildSegmentCollection(standardRoute.rwy);
this._exitCollection = this._buildSegmentCollection(standardRoute.exitPoints);
}
} never sets an @erikquinn should this airport have |
Just to remember: This issue occured to me on EDDM, EDDT and EDDF as well as EGLL ... and I did not test others except KSFO (that is working as expected). |
yep, and all 4 of those airports define their sids with only depending on what @erikquinn has to say about which direction to go here, this should be an easy(ish) fix. |
at the very least there should be tests for this case. |
PR app spun up at: https://atc-dev-pr-198.herokuapp.com/ no changes yet, but this is where they will be first when I have something. |
@panther2 @indianbhaji @erikquinn so I pushed a temp fix, looks like that was definitely the problem here. Take a look at the link above and give it a twirl. |
As it's implemented, all SIDs MUST have at least one Tests for this would indeed be great, and it might also be worth expanding upon the The linked |
@n8rzz |
Resolved by #755. Closing. |
from @panther2 on v3.2.0:
The text was updated successfully, but these errors were encountered: