Jump to content

[1.4.0-1.8.1] NavUtilities continued, ft. HSI & Instrument Landing System [v0.7.2] (2018 Apr, 1)


Ser

Recommended Posts

  • 4 weeks later...

Hi,

I want to add Dessert Arifield into navutilities.

I figured out that runway are added into navutilitues via cfg files. fine.

I then decided to read the cfg file, and I got one issue : the coordinate.

In the cfg file, for example runway "KSC 09", I got gsLatitude and locLatitude, which might be for glideslope and localizer. They are a bit different, but why not.

However, I'm trying to match it with the runway coordinate ingame, and got this problem : the latitude is quite the same : 0.04877658  in cfg, 0°2'56" ingame, which is 0.0488888888, so it's kinda the same

The longitude is a bit more problematic : in cfg i got 285.29973537 , but ingame it's something like 74° 42'0 which is : 74,71555556 .

So... why is that ?

Link to comment
Share on other sites

6 hours ago, Sppion1 said:

However, I'm trying to match it with the runway coordinate ingame, and got this problem : the latitude is quite the same : 0.04877658  in cfg, 0°2'56" ingame, which is 0.0488888888, so it's kinda the same

The longitude is a bit more problematic : in cfg i got 285.29973537 , but ingame it's something like 74° 42'0 which is : 74,71555556 .

So... why is that ?

It's 74° 42'0 WEST Longitude, which is roughly 360-74.71 etc = 285.29973537. Game UI reports Long as E/W values, but the underlying data is based on a full 360°, all positive numbers.

Edited by panarchist
Link to comment
Share on other sites

22 hours ago, Sppion1 said:

 

In the cfg file, for example runway "KSC 09", I got gsLatitude and locLatitude, which might be for glideslope and localizer. They are a bit different, but why not.

 

In real life localizer and glideslope transmitters are not in the same location.  Localizers are typically located at the far end of the runway.  This means that you can get valid centerline info all the way through the landing or even takeoff operation.  The glideslope transmitter is usually abeam the desired touchdown point.  

instrument_landing_system_afm_51-37_figu

 

You can go here:  http://code7700.com/ils.htm for more info about how ILSs work in practice.

Link to comment
Share on other sites

Thanks for the clarification :)

I already knew a bit about ILS, but not that much ^^

If someone interested, you can add this file in your GameData folder to add dessert airfiled runway to the ILS system of NavUtilities. (In a file named xxx.cfg)

//Dessert airfield runway heading 360
NavUtilRunway
{
	ident = DAF 36
	shortID = DA39
	hdg = 000.4
	identOfOpposite = DAF 18
	body = Kerbin
	altMSL = 822
	gsLatitude = -6.5825
	gsLongitude = 215.9594444
	locLatitude = -6.4666667
	locLongitude = 215.9611111
	
	outerMarkerDist = 10000
	middleMarkerDist = 2000
	innerMarkerDist = 325
}

//Dessert airfield runway heading 180
NavUtilRunway
{
	ident = DAF 18
	shortID = DA18
	hdg = 180.4
	identOfOpposite = DAF 36
	body = Kerbin
	altMSL = 822
	gsLatitude = -6.4666667
	gsLongitude = 215.9611111
	locLatitude = -6.5825
	locLongitude = 215.9594444
	
	outerMarkerDist = 10000
	middleMarkerDist = 2000
	innerMarkerDist = 325
}

 

Link to comment
Share on other sites

Well according to that config file, while the runway is a North/South aligned runway the heading is not quite north/south.  That 0.4 heading deviation might be enough to through the coordinates off.  Generally speaking for a north/south runway you would expect to see the longitude to be the same for all of the defined points with different latitudes.  While for East/West runways like at the KSC you would expect to see a common latitude and different longitudes. 

In this case I would guess that either the cfg coordinates and headings are a little wrong or the runway isn't aligned with a longitude line.  The accuracy of those points kinda depends on the manner in which the coordinates were derived in the first place.  You can also compare these coordinates with the config file that feeds mechjeb and its autoland module.

Link to comment
Share on other sites

1 hour ago, Galland1998 said:

Well according to that config file, while the runway is a North/South aligned runway the heading is not quite north/south.  That 0.4 heading deviation might be enough to through the coordinates off.  Generally speaking for a north/south runway you would expect to see the longitude to be the same for all of the defined points with different latitudes.  While for East/West runways like at the KSC you would expect to see a common latitude and different longitudes. 

In this case I would guess that either the cfg coordinates and headings are a little wrong or the runway isn't aligned with a longitude line.  The accuracy of those points kinda depends on the manner in which the coordinates were derived in the first place.  You can also compare these coordinates with the config file that feeds mechjeb and its autoland module.

Yep, I was a bit surprised when I saw navUtilities' config files, they also got those .4 deviation. To be honest I didn't really calculate  this deviation....

And I don't have mechjeb

Link to comment
Share on other sites

  • 3 weeks later...

To anyone struggling with bringing up options window under linux and 1.7.x - correct way of action now is 'Alt+Ctrl + Click on the icon'. For some reason, I have to press Alt before Ctrl for this combo to work.

Link to comment
Share on other sites

Hi, @Ser.

I issued two pull requests into your github:

Cheers!

 

On 1/1/2020 at 5:58 PM, whale_2 said:

To anyone struggling with bringing up options window under linux and 1.7.x - correct way of action now is 'Alt+Ctrl + Click on the icon'. For some reason, I have to press Alt before Ctrl for this combo to work.

Try pressing just Alt! The code that handles that click looks only for Alt.

Alt+Ctrl has a special meaning on some X11 Window Managers, I think your keystroke is being intercepted by X.

 

Edited by Lisias
Post edit
Link to comment
Share on other sites

On 1/9/2020 at 12:37 AM, Lisias said:

Try pressing just Alt! The code that handles that click looks only for Alt.

Alt+Ctrl has a special meaning on some X11 Window Managers, I think your keystroke is being intercepted by X.

That's what I normally did in older KSP (and in older Ubuntu) versions. For some reason, on my laptop Unity does not send Alt modifier if only Alt key is pressed - I put some debug logging into the code to find it out. Also, that's how I discovered, that Alt+Ctrl works.

Link to comment
Share on other sites

  • 1 month later...
On 12/12/2019 at 4:54 PM, Sppion1 said:

Thanks for the clarification :)

I already knew a bit about ILS, but not that much ^^

If someone interested, you can add this file in your GameData folder to add dessert airfiled runway to the ILS system of NavUtilities. (In a file named xxx.cfg)


//Dessert airfield runway heading 360
NavUtilRunway
{
	ident = DAF 36
	shortID = DA39
	hdg = 000.4
	identOfOpposite = DAF 18
	body = Kerbin
	altMSL = 822
	gsLatitude = -6.5825
	gsLongitude = 215.9594444
	locLatitude = -6.4666667
	locLongitude = 215.9611111
	
	outerMarkerDist = 10000
	middleMarkerDist = 2000
	innerMarkerDist = 325
}

//Dessert airfield runway heading 180
NavUtilRunway
{
	ident = DAF 18
	shortID = DA18
	hdg = 180.4
	identOfOpposite = DAF 36
	body = Kerbin
	altMSL = 822
	gsLatitude = -6.4666667
	gsLongitude = 215.9611111
	locLatitude = -6.5825
	locLongitude = 215.9594444
	
	outerMarkerDist = 10000
	middleMarkerDist = 2000
	innerMarkerDist = 325
}

 

 

Nice, thanks. Will check it out on my next trip to the Sand Bar.

 

Off the top of my head, if you change both instances of 'NavUtilRunway' to 'NavUtilRunway:NEEDS[SquadExpansion/Serenity]', they only should get added when the DLC is actually available.

Also, any special reason the shortID of 'DAF 36' is 'DA39'? And why not make both shortIDs read DAFxx (without the blank) as well?

Link to comment
Share on other sites

  • 1 month later...
On 7/16/2017 at 1:26 PM, Shnyrik said:

Some time ago I posted configs for runways from KerbinSide mod. Here is the updated version.

For those who also use KerbinCity mod I added a beacon directing approximately at KerbinCity TV tower.

  Reveal hidden contents

NavUtilRunway
{
        ident = Kerman Lake 15
        shortID = KERL15
        hdg = 146
        identOfOpposite = Kerman Lake 33
        body = Kerbin
        altMSL = 39
        gsLatitude = 11.2799
        gsLongitude = 296.4731
        locLatitude = 11.20073
        locLongitude = 296.5276
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Kerman Lake 33
        shortID = KERL33
        hdg = 326
        identOfOpposite = Kerman Lake 15
        body = Kerbin
        altMSL = 42
        gsLatitude = 11.13485
        gsLongitude = 296.5728
        locLatitude = 11.21401
        locLongitude = 296.5183
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Lake Dermal 32
        shortID = LD32
        hdg = 316
        identOfOpposite = Lake Dermal 14
        body = Kerbin
        altMSL = 562
        gsLatitude = 22.70469
        gsLongitude = 239.0598
        locLatitude = 22.77337
        locLongitude = 238.9879
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Lake Dermal 14
        shortID = KL14
        hdg = 136
        identOfOpposite = Lake Dermal 32
        body = Kerbin
        altMSL = 565
        gsLatitude = 22.82973
        gsLongitude = 238.9331
        locLatitude = 22.76102
        locLongitude = 239.0051
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Lushlands 01
        shortID = LL01
        hdg = 12
        identOfOpposite = Lushlands 19
        body = Kerbin
        altMSL = 774
        gsLatitude = 2.155582
        gsLongitude = 26.61091
        locLatitude = 2.248988
        locLongitude = 26.63078
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Lushlands 19
        shortID = LL19
        hdg = 192
        identOfOpposite = Lushlands 01
        body = Kerbin
        altMSL = 777
        gsLatitude = 2.324486
        gsLongitude = 26.64634
        locLatitude = 2.23108
        locLongitude = 26.62647
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = KSC Two Flat 17
        shortID = KBF17
        hdg = 173
        identOfOpposite = KSC Two Flat 35
        body = Kerbin
        altMSL = 432
        gsLatitude = 20.66689
        gsLongitude = 213.4141
        locLatitude = 20.57211
        locLongitude = 213.4266
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = KSC Two Flat 35
        shortID = KBF35
        hdg = 353
        identOfOpposite = KSC Two Flat 17
        body = Kerbin
        altMSL = 432
        gsLatitude = 20.51403
        gsLongitude = 213.4309
        locLatitude = 20.60881
        locLongitude = 213.4184
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = KSC Two FW 20
        shortID = KB20
        hdg = 196
        identOfOpposite = KSC Two RV 02
        body = Kerbin
        altMSL = 429
        gsLatitude = 20.65043
        gsLongitude = 213.5601
        locLatitude = 20.55863
        locLongitude = 213.532
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = KSC Two RV 02
        shortID = KB02
        hdg = 16
        identOfOpposite = KSC Two FW 20
        body = Kerbin
        altMSL = 430
        gsLatitude = 20.5161
        gsLongitude = 213.5187
        locLatitude = 20.60789
        locLongitude = 213.5468
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Green Coast FW 06
        shortID = GC06
        hdg = 59
        identOfOpposite = Green Coast RV 24
        body = Kerbin
        altMSL = 223
        gsLatitude = -3.493906
        gsLongitude = 179.0893
        locLatitude = -3.44472
        locLongitude = 179.1713
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Green Coast RV 24
        shortID = GC24
        hdg = 239
        identOfOpposite = Green Coast FW 06
        body = Kerbin
        altMSL = 224
        gsLatitude = -3.420468
        gsLongitude = 179.2144
        locLatitude = -3.469647
        locLongitude = 179.1324
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = North Pole 19
        shortID = NP19
        hdg = 192
        identOfOpposite = North Pole 01
        body = Kerbin
        altMSL = 48
        gsLatitude = 79.57256
        gsLongitude = 282.5903
        locLatitude = 79.47914
        locLongitude = 282.4815
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = North Pole 01
        shortID = NP01
        hdg = 12
        identOfOpposite = North Pole 19
        body = Kerbin
        altMSL = 49
        gsLatitude = 79.45485
        gsLongitude = 282.4466
        locLatitude = 79.54823
        locLongitude = 282.556
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = South Pole 05
        shortID = SP05
        hdg = 52.546833502915
        identOfOpposite = South Pole 23
        body = Kerbin
        altMSL = 33
        gsLatitude = -84.725520
        gsLongitude = 142.928215
        locLatitude = -84.725520
        locLongitude = 142.928215
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = South Pole 23
        shortID = SP23
        hdg = 231.67745637244
        identOfOpposite = South Pole 05
        body = Kerbin
        altMSL = 34
        gsLatitude = -84.662692
        gsLongitude = 143.801333
        locLatitude = -84.662692
        locLongitude = 143.801333
        outerMarkerDist = -1000
        middleMarkerDist = -1000
        innerMarkerDist = -1000
}

NavUtilRunway
{
         ident = KSS Kerman
         shortID = KSSK
         hdg = 261
         body = Kerbin
         altMSL = 18
         gsLatitude = 14.103317188893721
         gsLongitude = -32.791772693623173
         locLatitude = 14.103317188893721
         locLongitude = -32.791772693623173
         outerMarkerDist = 10000
         middleMarkerDist = 2200
         innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Dundard Edge FW
        shortID = DEFW
        identOfOpposite = Dundard Edge RV
        hdg = 183
        body = Kerbin
        altMSL = 529
        gsLatitude = 44.1193049341816
        gsLongitude = 227.986683807359
        locLatitude = 44.1193049341816
        locLongitude = 227.986683807359
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Dundard Edge RV
        shortID = DERV
        identOfOpposite = Dundard Edge FW
        hdg = 357
        body = Kerbin
        altMSL = 527
        gsLatitude = 44.2742410018947
        gsLongitude = 227.997049028032
        locLatitude = 44.2742410018947
        locLongitude = 227.997049028032
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Londie Isles FW
        shortID = LIFW
        hdg = 147
        identOfOpposite = Londie Isles RV
        body = Kerbin
        altMSL = 441
        gsLatitude = 29.5985468682293
        gsLongitude = 14.3003617383937
        locLatitude = 29.5985468682293
        locLongitude = 14.3003617383937
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Londie Isles RV
        shortID = LIRV
        hdg = 327
        identOfOpposite = Londie Isles FW
        body = Kerbin
        altMSL = 441
        gsLatitude = 29.7377170844703
        gsLongitude = 14.1986045632602
        locLatitude = 29.7377170844703
        locLongitude = 14.1986045632602
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Kerbin Bottom FW
        shortID = KBFW
        hdg = 76
        identOfOpposite = Kerbin Bottom RV
        body = Kerbin
        altMSL = 107
        gsLatitude = -50.4751071644365
        gsLongitude = 170.672504182358
        locLatitude = -50.4751071644365
        locLongitude = 170.672504182358
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Kerbin Bottom RV
        shortID = KBRV
        hdg = 256
        identOfOpposite = Kerbin Bottom FW
        body = Kerbin
        altMSL = 107
        gsLatitude = -50.4902547972505
        gsLongitude = 170.578606225688
        locLatitude = -50.4902547972505
        locLongitude = 170.578606225688
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Black Krags FW
        shortID = BKFW
        hdg = 187
        identOfOpposite = Black Krags RV
        body = Kerbin
        altMSL = 326
        gsLatitude = 11.2585093475488
        gsLongitude = 272.304276982919
        locLatitude = 11.2585093475488
        locLongitude = 272.304276982919
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Black Krags RV
        shortID = BKRV
        hdg = 7
        identOfOpposite = Black Krags FW
        body = Kerbin
        altMSL = 326
        gsLatitude = 11.3203899303849
        gsLongitude = 272.312225208109
        locLatitude = 11.3203899303849
        locLongitude = 272.312225208109
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = The Shelf FW
        shortID = TSFW
        hdg = 128
        identOfOpposite = The Shelf RV
        body = Kerbin
        altMSL = 316
        gsLatitude = -53.8559168107544
        gsLongitude = 197.992279641506
        locLatitude = -53.8559168107544
        locLongitude = 197.992279641506
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = The Shelf RV
        shortID = TSRV
        hdg = 306
        identOfOpposite = The Shelf FW
        body = Kerbin
        altMSL = 316
        gsLatitude = -53.8164749088617
        gsLongitude = 197.904783309467
        locLatitude = -53.8164749088617
        locLongitude = 197.904783309467
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Coaler Crater FW
        shortID = CCFW
        hdg = 231
        identOfOpposite = Coaler Crater RV
        body = Kerbin
        altMSL = 70
        gsLatitude = 35.429
        gsLongitude = 261.095
        locLatitude = 35.429
        locLongitude = 261.095
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Coaler Crater RV
        shortID = CCRV
        hdg = 52
        identOfOpposite = Coaler Crater FW
        body = Kerbin
        altMSL = 70
        gsLatitude = 35.429
        gsLongitude = 261.095
        locLatitude = 35.429
        locLongitude = 261.095
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = South Point FW
        shortID = SPFW
        hdg = 224
        identOfOpposite = South Point RV
        body = Kerbin
        altMSL = 237
        gsLatitude = -17.8611843224849
        gsLongitude = 166.388569407982
        locLatitude = -17.8611843224849
        locLongitude = 166.388569407982
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = South Point RV
        shortID = SPRV
        hdg = 44
        identOfOpposite = South Point FW
        body = Kerbin
        altMSL = 237
        gsLatitude = -17.8205027853357
        gsLongitude = 166.427730650577
        locLatitude = -17.8205027853357
        locLongitude = 166.427730650577
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}


NavUtilRunway
{
        ident = South Hope FW
        shortID = SHFW
        hdg = 354
        identOfOpposite = South Hope RV
        body = Kerbin
        altMSL = 260
        gsLatitude = -49.6449298742853
        gsLongitude = 16.969470114174
        locLatitude = -49.6449298742853
        locLongitude = 16.969470114174
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = South Hope RV
        shortID = SHRV
        hdg = 174
        identOfOpposite = South Hope FW
        body = Kerbin
        altMSL = 260
        gsLatitude = -49.7957532436839
        gsLongitude = 16.9945664800318
        locLatitude = -49.7957532436839
        locLongitude = 16.9945664800318
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Round Range FW
        shortID = RRFW
        hdg = 97
        identOfOpposite = Round Range RV
        body = Kerbin
        altMSL = 1252
        gsLatitude = -6.03108603549769
        gsLongitude = 99.5391488148257
        locLatitude = -6.03108603549769
        locLongitude = 99.5391488148257
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Round Range RV
        shortID = RRRV
        hdg = 278
        identOfOpposite = Round Range FW
        body = Kerbin
        altMSL = 1252
        gsLatitude = -6.01212242281816
        gsLongitude = 99.3891654504821
        locLatitude = -6.01212242281816
        locLongitude = 99.3891654504821
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

 NavUtilRunway
 {
          ident = Area 110011 FW
         shortID = 110011FW
         hdg = 215
         identOfOpposite = Area 110011 RV
         body = Kerbin
         altMSL = 339
         gsLatitude = 10.4455537178098
         gsLongitude = 227.755291435086
         locLatitude = 10.4455537178098
         locLongitude = 227.755291435086
         outerMarkerDist = 10000
         middleMarkerDist = 2200
         innerMarkerDist = 200
 }

 NavUtilRunway
 {
          ident = Area 110011 RV
         shortID = 110011RV
         hdg = 35
         identOfOpposite = Area 110011 FW
         body = Kerbin
         altMSL = 339
         gsLatitude = 10.4455537178098
         gsLongitude = 227.755291435086
         locLatitude = 10.4455537178098
         locLongitude = 227.755291435086
         outerMarkerDist = 10000
         middleMarkerDist = 2200
         innerMarkerDist = 200
 }

 NavUtilRunway
{
        ident = Valentina's Landing FW
        shortID = VLFW
        hdg = 338
        identOfOpposite = Valentina's Landing RW
        body = Kerbin
        altMSL = 122
        gsLatitude = -49.594316797780969
        gsLongitude = 127.70681691033401
        locLatitude = -49.594316797780969
        locLongitude = 127.70681691033401
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

 NavUtilRunway
{
        ident = Valentina's Landing RW
        shortID = VLFW
        hdg = 158
        identOfOpposite = Valentina's Landing FW
        body = Kerbin
        altMSL = 126
        gsLatitude = -49.365982119630459
        gsLongitude = 127.56994873204349
        locLatitude = -49.365982119630459
        locLongitude = 127.56994873204349
        outerMarkerDist = 10000
        middleMarkerDist = 2200
        innerMarkerDist = 200
}

NavUtilRunway
{
        ident = Kerbin City TV Tower
        shortID = KC-TV
        hdg = 90
        body = Kerbin
        altMSL = 500
        gsLatitude = -5.805436149
        gsLongitude = -83.34282382
        locLatitude = -5.805436149
        locLongitude = -83.34282382

        outerMarkerDist = -1000
        middleMarkerDist = -1000
        innerMarkerDist = -1000
}

 

I am quoting this just to let people know that this mod still works great in 1.9.1, and the custom configs mentioned in the quoted message still work fine if you are using Kerbin Side Complete (the older version; kerbin side remastered does not have the older runways and thus it is not necessary to add custom localizers to places like Lake Dermal etc.). 

This is a damn great mod. 

Link to comment
Share on other sites

Hello, first post here. Awesome mod, BTW!

I'd like to know if there's any indicator for when you are "within" a waypoint's radius (e.g. when you are conducting a temperature observation).

I'm asking that because since the mod removes the waypoints from the stock navball, I couldn't find any replacement for the flashing waypoint that appeared there.

Thanks!

Link to comment
Share on other sites

2 hours ago, fabianovc said:

Hello, first post here. Awesome mod, BTW!

I'd like to know if there's any indicator for when you are "within" a waypoint's radius (e.g. when you are conducting a temperature observation).

I'm asking that because since the mod removes the waypoints from the stock navball, I couldn't find any replacement for the flashing waypoint that appeared there.

Thanks!

It does not. Give "waypoint manager" a try, though.

Link to comment
Share on other sites

1 hour ago, glibbo said:

Hi, I'm getting a graphic problem with the HSI,  no matter the scale it is blurred, I have KSP 1.8.1,  modulemanager 4.1.3  , rasterprop core 03.13

win 7 x64

https://imgur.com/a/IGXClT4

maybe something simple, any help appreciated, thanks.

sorry not on dropbox etc yet so no log file at present, to do list...

 

Check your graphics settings

Link to comment
Share on other sites

2 hours ago, glibbo said:

Hi, I'm getting a graphic problem with the HSI,  no matter the scale it is blurred, I have KSP 1.8.1,  modulemanager 4.1.3  , rasterprop core 03.13

win 7 x64

https://imgur.com/a/IGXClT4

maybe something simple, any help appreciated, thanks.

sorry not on dropbox etc yet so no log file at present, to do list...

 

Indeed some mods' interfaces ony look good when the game is set to high res graphics. One would imagine it only affects game graphics (world, parts etc) but... no. 

Link to comment
Share on other sites

13 hours ago, Daniel Prates said:

Indeed some mods' interfaces ony look good when the game is set to high res graphics. One would imagine it only affects game graphics (world, parts etc) but... no. 

15 hours ago, linuxgurugamer said:

Check your graphics settings

Quote

 

That works, thanks guys, although I'm not too sure which setting did it, I just upped a few....:lol:

Link to comment
Share on other sites

40 minutes ago, Nightside said:

Thanks, good to know.

Are you using RPM? ( I am not).

I do have it installed, but so far I've only been using the stand-alone instrument–still in early low tech career mode, and I haven't tried it in sand box.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...