-
Notifications
You must be signed in to change notification settings - Fork 53
/
index.html
974 lines (878 loc) · 40.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
<!DOCTYPE html>
<html lang="en">
<title>Traveller Map</title>
<meta charset="utf-8">
<meta name="description"
content="An interactive map of the universe of the Traveller role playing game,
incorporating official data and fan submissions. The site also provides
services for generating custom maps and APIs for incorporating maps
into other sites.">
<link rel="shortcut icon" href="favicon.svg">
<link rel="manifest" href="res/app/manifest.json">
<!-- Microsoft/Edge -->
<meta name="msapplication-config" content="res/app/browserconfig.xml">
<meta name="theme-color" content="#000000">
<!-- Apple/Safari -->
<link rel="mask-icon" href="res/app/safari-pinned-tab.svg" color="#000000">
<link rel="apple-touch-icon" sizes="152x152" href="res/app/regina152.png">
<link rel="apple-touch-icon" sizes="180x180" href="res/app/regina180.png">
<!-- Mobile -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=0, width=device-width, viewport-fit=cover">
<link rel="alternate" type="application/atom+xml" title="Traveller Map News - Atom" href="https://travellermap.blogspot.com/feeds/posts/default">
<link rel="alternate" type="application/rss+xml" title="Traveller Map News - RSS" href="https://travellermap.blogspot.com/feeds/posts/default?alt=rss">
<link rel="canonical" href="https://travellermap.com">
<!-- Facebook Open Graph -->
<meta property="og:title" content="The Traveller Map">
<meta property="og:type" content="website">
<meta property="og:url" content="https://travellermap.com">
<meta property="og:image" content="https://travellermap.com/res/app/fb.png">
<meta property="og:site_name" content="The Traveller Map">
<meta property="fb:admins" content="617166358">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Marcellus">
<link rel="stylesheet" href="index.css?update=2024-07-04T13:35:15">
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.8/handlebars.min.js"></script>
<script defer src="map.js?update=2024-10-18T17:24:41"></script>
<script defer src="world_util.js?update=2024-10-14T18:03:31"></script>
<script defer src="index.js?update=2024-10-18T17:37:38"></script>
<body class="hide-ui hide-footer ds-mini show-settings">
<div id="mapContainer">
<div id="dragContainer"
tabindex="0"
title="Mouse: Drag to scroll, wheel to zoom
Keyboard: Arrows to scroll, +/- to zoom">
</div>
</div>
<div id="direction-coreward" class="direction">Coreward</div>
<div id="direction-rimward" class="direction">Rimward</div>
<div id="direction-spinward" class="direction">Spinward</div>
<div id="direction-trailing" class="direction">Trailing</div>
<div id="topBar" class="ui bar">
<form id="searchForm" action=".">
<input type="submit" style="visibility: hidden; position: absolute;">
<input type="text"
id="searchBox"
placeholder="Search..."
title="Search by world, subsector, sector or region name.
 • * and ? as wildcards
 • Use uwp: pbg: zone: alleg: or remark: to search data (e.g. uwp:A*)
 • Use in: to search in a sector (e.g. uwp:*-F in:Deneb)
 • Use like: for sounds-like matches
 • Use exact: or "quotes" to find exact matches"
disabled
autocomplete="off"
autocorrect="off"
autocapitalize="none"
spellcheck="false"
>
<div id=spinner></div>
<button id="searchBtn" class=dim
title="Search">
</button>
<button id="closeSearchBtn" class=dim
title="Close search">
</button>
</form>
<button id="routeBtn"
class=bar-button
title="Calculate a jump route between worlds">
</button>
</div>
<div id=topBarRight class="ui bar">
<div class="bar-right">
<button id="homeBtn"
class=bar-button
title="Return to the default view
Keyboard: H">
</button>
<button id="legendBtn"
class=bar-button
title="Map legend and symbols
Keyboard: M">
</button>
<button id="moreBtn"
class=bar-button
title="Show options">
</button>
</div>
</div>
<div id="resultsBox"
class="ui hoverbox hoverbox-left">
<div id="resultsContainer"></div>
<p class="tip"><br><a target=_blank rel=noopener href="doc/about#search">Search tips...</a></p>
<script id="SearchResultsTemplate" type="text/x-handlebars-template">
{{#Results.Items}}
<div class="item">
{{#World}}
<div class="item-main"><a title="Navigate to {{Name}}" href="{{href}}" onclick="{{onclick}}">{{Name}}</a></div>
<div class="item-location">
{{Sector}} {{Hex}}
{{#InReview}}<span class="item-status">(In Review)</span>{{/InReview}}
{{#Unreviewed}}<span class="item-status">(Unreviewed)</span>{{/Unreviewed}}
{{#Apocryphal}}<span class="item-status">(Apocryphal)</span>{{/Apocryphal}}
{{#Unofficial}}<span class="item-status">(Unofficial)</span>{{/Unofficial}}
</div>
{{#Title}}<div class="item-title">{{.}}</div>{{/Title}}
{{#Uwp}}<div class="item-uwp">{{.}}</div>{{/Uwp}}
{{/World}}
{{#Subsector}}
<div class="item-main"><a title="Navigate to {{Name}}" href="{{href}}" onclick="{{onclick}}">{{Name}}</a></div>
<div class="item-location">
Subsector {{Index}} of {{Sector}}
{{#InReview}}<span class="item-status">(In Review)</span>{{/InReview}}
{{#Unreviewed}}<span class="item-status">(Unreviewed)</span>{{/Unreviewed}}
{{#Apocryphal}}<span class="item-status">(Apocryphal)</span>{{/Apocryphal}}
{{#Unofficial}}<span class="item-status">(Unofficial)</span>{{/Unofficial}}
</div>
{{#Title}}<div class="item-title">{{.}}</div>{{/Title}}
{{/Subsector}}
{{#Sector}}
<div class="item-main"><a title="Navigate to {{Name}}" href="{{href}}" onclick="{{onclick}}">{{Name}}</a></div>
<div class="item-location">
Sector
{{#InReview}}<span class="item-status">(In Review)</span>{{/InReview}}
{{#Unreviewed}}<span class="item-status">(Unreviewed)</span>{{/Unreviewed}}
{{#Apocryphal}}<span class="item-status">(Apocryphal)</span>{{/Apocryphal}}
{{#Unofficial}}<span class="item-status">(Unofficial)</span>{{/Unofficial}}
</div>
{{#Title}}<div class="item-title">{{.}}</div>{{/Title}}
{{/Sector}}
{{#Label}}
<div class="item-main"><a title="Navigate to {{Name}}" href="{{href}}" onclick="{{onclick}}">{{Name}}</a></div>
<div class="item-location">
{{#InReview}}<span class="item-status">(In Review)</span>{{/InReview}}
{{#Unreviewed}}<span class="item-status">(Unreviewed)</span>{{/Unreviewed}}
{{#Apocryphal}}<span class="item-status">(Apocryphal)</span>{{/Apocryphal}}
{{#Unofficial}}<span class="item-status">(Unofficial)</span>{{/Unofficial}}
</div>
{{#Title}}<div class="item-title">{{.}}</div>{{/Title}}
{{/Label}}
</div>
{{/Results.Items}}
{{^Results.Items}}
<div><i>No matches found.</i></div>
{{/Results.Items}}
</script>
</div>
<div id="routeBox"
class="ui hoverbox hoverbox-left">
<form id="routeForm">
<input type="text"
name="start"
id="routeStart"
placeholder="Start (type or click map)"
title="Route start location - world name, or "Sector Hex" e.g. "Spinward Marches 1910""
autocomplete="off"
autocorrect="off"
autocapitalize="none"
spellcheck="false">
<br>
<input type="text"
name="end"
id="routeEnd"
placeholder="Destination (type or click map)"
title="Route end location - world name, or "Sector Hex" e.g. "Solomani Rim 1827""
autocomplete="off"
autocorrect="off"
autocapitalize="none"
spellcheck="false">
<button disabled style="display: none" aria-hidden="true"></button>
<button id="closeRouteBtn" class=dim
title="Close route">
</button>
<button id="swapRouteBtn" class=dim
title="Swap start/end">
</button>
<button id="J-1" class=jump-button name=jump title="Calculate a Jump-1 route" data-parsecs=1 >J-1</button>
<button id="J-2" class=jump-button name=jump title="Calculate a Jump-2 route" data-parsecs=2 >J-2</button>
<button id="J-3" class=jump-button name=jump title="Calculate a Jump-3 route" data-parsecs=3 >J-3</button>
<button id="J-4" class=jump-button name=jump title="Calculate a Jump-4 route" data-parsecs=4 >J-4</button>
<button id="J-5" class=jump-button name=jump title="Calculate a Jump-5 route" data-parsecs=5 >J-5</button>
<button id="J-6" class=jump-button name=jump title="Calculate a Jump-6 route" data-parsecs=6 >J-6</button>
<button id="H-1" class=jump-button name=jump title="Calculate a Hop-1 route" data-parsecs=10>H-1</button>
<div id="routeDisplay">
<div id="routePath"></div>
<div id="routeOptions">
<div class=routeOptions-item><input type="checkbox" id="route-wild" name="wild"><label for=route-wild title="Stops must have gas giant or liquid water present"> Require Wilderness Fueling</label></div>
<div class=routeOptions-item><input type="checkbox" id="route-im" name="im"><label for=route-im title="Stops must be member worlds of the Third Imperium"> Only Imperial Worlds</label></div>
<div class=routeOptions-item><input type="checkbox" id="route-nored" name="nored"><label for=route-nored title="Stops must not be restricted (TAS Red Zone)"> Avoid Red Zones</label></div>
<div class=routeOptions-item><input type="checkbox" id="route-aok" name="aok"><label for=route-aok title="Allow stops at calibration points, deep space stations, and other anomalies"> Allow Anomalies/Calibration Points</label></div>
</div>
</div>
</form>
<script id="RouteResultsTemplate" type="text/x-handlebars-template">
<span class="route-summary">
{{Distance}} parsecs — {{Jumps}} jumps
</span>
{{#Route}}
<div class="item">
{{#Distance}}
<div class="item-distance">{{.}}</div>
{{/Distance}}
<div class="item-main"><a title="Navigate to {{Name}}" href="{{href}}" onclick="{{onclick}}">{{Name}}</a></div>
<div class="item-location">
{{Sector}} {{Hex}}
</div>
</div>
{{/Route}}
<span class="route-links">
<span id=print-route class=link-button-inline><a href="#" class=print-icon>Print</a></span>
<span id=copy-route class=link-button-inline><a href="#" class=copy-icon>Copy to Clipboard</a></span>
</span>
</script>
<script id="RouteResultsTextTemplate" type="text/x-handlebars-template">
{{Distance}} parsecs -- {{Jumps}} jumps
{{#Route}}
* {{Name}} ({{Sector}} {{Hex}})
{{#Distance}}
Jump {{.}} to
{{/Distance}}
{{/Route}}
</script>
<script id="RouteErrorTemplate" type="text/x-handlebars-template">
<div><i>{{Message}}</i></div>
</script>
</div>
<div id=panel-shade></div>
<div id="moreBox"
class="ui"
>
<div id="more-tabs">
<button id="settingsBtn"
class=tab-button
title="Change the map appearance">
</button>
<button id="labBtn"
class=tab-button
title="Experimental features">
</button>
<button id="milieuBtn"
class=tab-button
title="Milieu">
</button>
<button id="shareBtn"
class=tab-button
title="Share links to the map">
</button>
<button id="helpBtn"
class=tab-button
title="Help, feedback, and more">
</button>
</div>
<button id=more-closebtn class="closebtn dim" title="Close"></button>
<div id="moreScroll">
<div id="settings-tab"
class="more-tab settings">
<section id=styles>
<span class=styles-p1>
<button id=settingsBtn-poster
class=style-choice
title="Classic black background"
></button>
<button id=settingsBtn-print
class=style-choice
title="Printer friendly"
></button>
<button id=settingsBtn-mongoose
class=style-choice
title="Mongoose"
></button>
<button id=settingsBtn-candy
class=style-choice
title="Eye candy"
></button>
<button id=styles-p2
class="styles-pager dim chevron-right"
title="More styles"
></button>
</span>
<span class=styles-p2>
<button id=styles-p1
class="styles-pager dim chevron-left"
title="More styles"
></button>
<button id=settingsBtn-draft
class=style-choice
title="Draft"
></button>
<button id=settingsBtn-fasa
class=style-choice
title="FASA"
></button>
<button id=settingsBtn-atlas
class=style-choice
title="Black on white"
></button>
<button id=settingsBtn-terminal
class=style-choice
title="Terminal"
></button>
</span>
</section>
<section id="settings-show">
<h3>Features</h3>
<div>
<div class=settings-item><input type="checkbox" id=cbGalDir><label for=cbGalDir title="Show or hide the direction labels around the edge of the map"> Galactic Direction</label></div>
<div class=settings-item><input type="checkbox" name="grid" value="true" id=ShowSectorGrid><label for=ShowSectorGrid title="Show sector and subsector grid lines"> Sector Grid</label></div>
<div class=settings-item><input type="checkbox" id=ShowSectorNames><label for=ShowSectorNames title="Show or hide sector and subsector names"> Sector Names</label>
<div class="indent">
<input type="radio" name="sector_names" id=ShowSelectedSectorNames value="ShowSelectedSectorNames"><label for=ShowSelectedSectorNames title="Show only the names of selected sectors when zoomed out"> Selected</label>
<input type="radio" name="sector_names" id=ShowAllSectorNames value="ShowAllSectorNames"><label for=ShowAllSectorNames title="Show the names of all sectors when zoomed out"> All</label>
</div>
</div>
<div class=settings-item><input type="checkbox" id=ShowGovernmentBorders><label for=ShowGovernmentBorders title="Display political borders"> Borders</label></div>
<div class=settings-item><input type="checkbox" id=ShowRoutes><label for=ShowRoutes title="Display routes"> Routes</label></div>
<div class=settings-item><input type="checkbox" id=ShowGovernmentNames><label for=ShowGovernmentNames title="Display government and region names"> Region Names</label></div>
<div class=settings-item><input type="checkbox" id=ShowImportantWorlds><label for=ShowImportantWorlds title="Show important worlds when zoomed out"> Important Worlds</label></div>
</div>
</section>
<section>
<h3>Appearance</h3>
<div>
<div class=settings-item><input type="checkbox" id=cbWorldColors><label for=cbWorldColors title="Use more colors for world features"> More World Colors</label></div>
<div class=settings-item><input type="checkbox" id=cbFilledBorders><label for=cbFilledBorders title="Fill borders to make regions more visible"> Filled Borders</label></div>
<div class=settings-item><input type="checkbox" id=cbDimUnofficial><label for=cbDimUnofficial title="Dim sectors that are not official Traveller 5 Sector Survey data"> Dim Unofficial Data</label></div>
</div>
</section>
<section>
<div>
<p id=btnResetPrefs class=link-button>
<a href="#" title="Reset all preferences to their initial value">Reset Preferences</a>
</p>
</div>
</section>
<!-- Hidden options, controlled by other UI elements but retained for binding. -->
<div style="display: none">
<input type="checkbox" id="cbTilt">
</div>
</div>
<div id="milieu-tab"
class="more-tab settings">
<section>
<h3>Milieu</h3>
<div id=milieu-choices>
<div class=settings-item><input type="radio" name="milieu" value="IW" id=mil-1><label for=mil-1> The Interstellar Wars</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M0" id=mil-2><label for=mil-2> Milieu 0 – Early Imperium</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M990" id=mil-3><label for=mil-3> 990 – Solomani Rim War</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M1105" id=mil-4><label for=mil-4> 1105 – The Golden Age <b>(default)</b></label></div>
<div class=settings-item><input type="radio" name="milieu" value="M1120" id=mil-5><label for=mil-5> 1120 – The Rebellion</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M1201" id=mil-6><label for=mil-6> 1201 – The New Era</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M1248" id=mil-7><label for=mil-7> 1248 – The New, New Era</label></div>
<div class=settings-item><input type="radio" name="milieu" value="M1900" id=mil-8><label for=mil-8> 1900 – The Far Far Future</label></div>
</div>
</section>
</div>
<div id="lab-tab"
class="more-tab settings">
<section>
<h3>Overlays</h3>
<div id=overlays>
<div class=settings-item><input type="checkbox" id=cbImpOverlay><label for=cbImpOverlay title="Highlight world importance"> Importance</label></div>
<div class=settings-item><input type="checkbox" id=cbPopOverlay><label for=cbPopOverlay title="Highlight world population"> Population</label></div>
<div class=settings-item><input type="checkbox" id=cbCapitalOverlay><label for=cbCapitalOverlay title="Highlight capitals/candidates"> Capitals/Candidates</label></div>
<div class=settings-item><input type="checkbox" id=cbMinorHomeworlds><label for=cbMinorHomeworlds title="Highlight homeworlds of minor races"> Minor Race Homeworlds</label></div>
<div class=settings-item><input type="checkbox" id=cbDroyneWorlds><label for=cbDroyneWorlds title="Highlight worlds with Droyne (and Chirper) populations"> Droyne Worlds</label></div>
<div class=settings-item><input type="checkbox" id=cbAncientWorlds><label for=cbAncientWorlds title="Highlight known Ancient sites"> Ancient Sites</label></div>
<div class=settings-item><input type="checkbox" id=cbStellar><label for=cbStellar title="Render stars rather than world details"> Stellar</label></div>
<div class=settings-item><input type="checkbox" id=cbWave><label for=cbWave title="Show position of the Empress Wave"> Empress Wave</label></div>
<div class=settings-item><input type="checkbox" id=cbQZ><label for=cbQZ title="Show position of the Qrekrsha Zone"> Qrekrsha Zone</label></div>
<div class=settings-item><input type="checkbox" id=cbMains><label for=cbMains title="Highlight Jump-1 Mains"> Mains</label></div>
</div>
</section>
</div>
<div id="help-tab"
class="more-tab">
<section>
<h3>Traveller</h3>
<p><a target=_blank rel=noopener href="https://traveller5.net">Traveller & Far Future Enterprises</a></p>
<p><a target=_blank rel=noopener href="http://travellerrpg.com/">Citizens of the Imperium Forum</a></p>
<p><a target=_blank rel=noopener href="https://wiki.travellerrpg.com/">The Traveller Wiki</a></p>
<p><a target=_blank rel=noopener href="https://www.mongoosepublishing.com/collections/traveller-rpgs">Mongoose Publishing</a>
• <a target=_blank rel=noopener href="http://forum.mongoosepublishing.com/viewforum.php?f=89">Forum</a></p>
</section>
<section>
<h3>The Traveller Map</h3>
<p><a target=_blank rel=noopener href="doc/about">About the Traveller Map</a></p>
<p><a target=_blank rel=noopener href="doc/credits">Credits and Data Sources</a></p>
<p>
<a target=_blank rel=noopener href="https://travellermap.blogspot.com/">News & Feedback</a>
•
<a target=_blank rel=noopener href="https://github.com/inexorabletash/travellermap/issues">Bug Reports</a>
</p>
</section>
<section id="help-tools">
<h3>Players & Referees</h3>
<p><a target=_blank rel=noopener href="doc/secondsurvey">About Second Survey Data</a></p>
<p>
<a target=_blank rel=noopener href="make/booklet">Booklet Maker</a> •
<a target=_blank rel=noopener href="make/poster">Poster Maker</a>
</p>
<p>
<a target=_blank rel=noopener href="doc/custom">Custom Data</a> •
<a target=_blank rel=noopener href="doc/submit">Submissions</a>
</p>
</section>
<section id="help-developers">
<h3>Developers</h3>
<p><a target=_blank rel=noopener href="doc/api">Explore the API</a></p>
<p><a target=_blank rel=noopener href="https://github.com/inexorabletash/travellermap">Get the source code</a></p>
</section>
</div>
<div id="share-tab"
class="more-tab">
<section>
<a id="download-snapshot" target=_blank rel=noopener href="#" download="TravellerMapSnapshot">Save Snapshot</a>
(<a id="download-snapshot-pdf" target=_blank rel=noopener href="#">or PDF</a>)
</section>
<section>
<a class=share id=share-facebook target=_blank rel=noopener data-template="http://www.facebook.com/sharer.php?u={{url}}">Facebook</a>
<a class=share id=share-pinterest target=_blank rel=noopener data-template="http://pinterest.com/pin/create/button/?url={{url}}&description={{text}}">Pinterest</a>
<a class=share id=share-reddit target=_blank rel=noopener data-template="http://reddit.com/submit?url={{url}}&title={{text}}">Reddit</a>
<a class=share id=share-tumblr target=_blank rel=noopener data-template="http://www.tumblr.com/share/link?url={{url}}&title={{text}}">Tumblr</a>
<a class=share id=share-linkedin target=_blank rel=noopener data-template="https://www.linkedin.com/shareArticle?mini=true&url={{url}}&title={{text}}">LinkedIn</a>
<a class=share id=share-email target=_blank rel=noopener data-template="mailto:?Subject={{text}}&Body={{url}}">Email</a>
</section>
<section>
Share this link:
<a href="#" id=copy-share-url class=copy-icon>Copy</a>
<input readonly id="share-url" title="Copy and paste">
</section>
<section id="share-embed">
Embed this HTML:
<a href="#" id=copy-share-code class=copy-icon>Copy</a>
<input readonly id="share-code" title="Copy and paste">
</section>
</div>
</div>
</div>
<div id="legendBox"
class="ui hoverbox hoverbox-right">
<button id=legend-closebtn class="closebtn dim" title="Close"></button>
<div id="legendBoxContent">
<section>
<h2>Map Legend</h2><br>
<div id="image1"></div>
<div id="image2"></div>
</section>
<section id="world_colors">
<h2>World Characteristics</h2><br>
<ul>
<li class=extended-only><span class="glyph RiAg">●</span> Rich & Agricultural
<li class=extended-only><span class="glyph Ag">●</span> Agricultural
<li class=extended-only><span class="glyph Ri">●</span> Rich
<li class=extended-only><span class="glyph In">●</span> Industrial
<li class=extended-only><span class="glyph corrosive">●</span> Corrosive/Insidious
<li class=extended-only><span class="glyph Va">●</span> Vacuum
<li><span class="glyph water">●</span> Water Present
<li><span class="glyph nowater">●</span> No Water Present
<li><span class="glyph g12">:::</span> Asteroid Belt
<li><span class="glyph">∗</span> Unknown
<li><span class="glyph highlight">⌖</span> Anomaly
<li class=opt-mh-only><span class="glyph amberzone">✻</span> Minor Race Homeworld
<li class=opt-dw-only><span class="glyph amberzone">★</span> Droyne World
<li class=opt-dw-only><span class="glyph amberzone">☆</span> Chirper World
<li class=opt-an-only><span class="glyph amberzone">☀</span> Ancient Site
</ul>
</section>
<section id="bases">
<h2>Bases</h2><br>
<ul>
<li><span class="glyph g8">★</span> Imperial Naval Base
<li><span class="glyph g10">▲</span> Imperial Scout Base
<li><span class="glyph g10 highlight">▲</span> Imperial Scout Way Station
<li><span class="glyph g10">■</span> Imperial Naval Depot
<li><span class="glyph g12">♦</span> Zhodani Base
<li><span class="glyph g12 highlight">♦</span> Zhodani Relay Station
<li><span class="glyph g8 highlight">★</span> Other Naval / Tlauku Base
<li><span class="glyph g10 highlight">■</span> Other Naval Outpost / Depot
<li><span class="glyph g8">∗∗</span> Corsair / Clan / Embassy
<li><span class="glyph g10">✦</span> Military Base / Garrison
<li><span class="glyph g12">•</span> Independent Base
<li><span class="glyph g10 highlight"><b>Γ</b></span> Research Station
<li><span class="glyph g10"><b>R</b></span> Imperial Reserve
<li><span class="glyph g10 highlight"><b>P</b></span> Penal Colony
<li><span class="glyph g10"><b>X</b></span> Prison, Exile Camp
</ul>
</section>
<section>
<h2>Travel Zones</h2><br>
<ul>
<li id="greenzone-item"><span class="glyph greenzone g12">▬</span> Green Zone
<li><span class="glyph amberzone g12">▬</span> Amber Zone
<li><span class="glyph redzone g12">▬</span> Red Zone
</ul>
</section>
<section id="population">
<h2>Population</h2><br>
<ul>
<li><span class="popname pop-few">Wef</span> under 1 billion
<li><span class="popname pop-many">YNAM</span> over 1 billion
<li><span class="highlight pop-capital">Highlighted</span> world names<br>are subsector capitals.
</ul>
</section>
</div>
</div>
<div id="navBar"
class="ui bar">
<button id="homeBtn2"
class=bar-button
title="Return to the default view
Keyboard: H">
</button>
</div>
<div id="navBarRight"
class="ui bar">
<div class="bar-right">
<canvas id="scaleIndicator"
title="Scale"
width="120" height="30">
</canvas>
<button id="zoomInBtn"
class=bar-button
title="Zoom in
Keyboard: +">
</button>
<button id="zoomOutBtn"
class=bar-button
title="Zoom out
Keyboard: -">
</button>
<button id="tiltBtn"
class=bar-button
title="Tilt
Keyboard: T">
</button>
<button id="fsBtn"
class=bar-button
title="Full screen
Keyboard: F">
</button>
</div>
</div>
<div id="bottom-pane"
class="ui">
<div id="stripe"></div>
<div id="LogoImage" title="Traveller® - Science Fiction Adventure in the Far Future"> </div>
<div id="MetadataDisplay">
<div class="credits">
The <b><i>Traveller</i></b> game in all forms is owned by <a target=_blank rel=noopener href="https://mongoosepublishing.com">Mongoose Publishing</a>. Copyright 1977 – 2024 Mongoose Publishing.
</div>
</div>
<script id="MetadataTemplate" type="text/x-handlebars-template">
<div>
{{SectorName}}
</div>
<div class="credits">
{{Attribution}}
{{#SectorRef}}— <a target=_blank rel=noopener href="{{.}}">Source</a>{{/SectorRef}}
{{#ProductRef}}
— <a title="Publisher's Catalog" target=_blank rel=noopener href="{{.}}">
{{../ProductTitle}}
{{#../ProductAuthor}} by {{.}}{{/../ProductAuthor}}
({{../ProductPublisher}})</a>
{{/ProductRef}}
</div>
<div class="metadata-status">
{{#Official}}
<a class="official" target=_blank rel=noopener
title="Sector data has been approved by the Traveller 5 Second Survey"
href="doc/credits#official"><span class="bar">▬</span> Official <span class="bar">▬</span></a>
{{/Official}}
{{#InReview}}
<a class="inreview" target=_blank rel=noopener
title="Sector data is being reviewed by the Traveller 5 Second Survey"
href="doc/credits#inreview"><span class="bar">▬</span> In Review <span class="bar">▬</span></a>
{{/InReview}}
{{#Unreviewed}}
<a class="unreviewed" target=_blank rel=noopener
title="Sector data has not yet been reviewed by the Traveller 5 Second Survey"
href="doc/credits#unreviewed"><span class="bar">▬</span> Unreviewed <span class="bar">▬</span></a>
{{/Unreviewed}}
{{#Preserve}}
<a class="preserve" target=_blank rel=noopener
title="This sector is set aside as a Referee's Preserve - the presented data is an example"
href="doc/credits#preserve"><span class="bar">▬</span> Preserve <span class="bar">▬</span></a>
{{/Preserve}}
{{#Apocryphal}}
<a class="apocryphal" target=_blank rel=noopener
title="Sector data is apocryphal - no longer considered official"
href="doc/credits#apocryphal"><span class="bar">▬</span> Apocryphal <span class="bar">▬</span></a>
{{/Apocryphal}}
{{#Unofficial}}
<a class="unofficial" target=_blank rel=noopener
title="Sector data is unofficial"
href="doc/credits#unofficial"><span class="bar">▬</span> Unofficial <span class="bar">▬</span></a>
{{/Unofficial}}
{{#Unmapped}}
{{/Unmapped}}
</div>
</script>
</div>
<div id=sds-frame class=ds-frame>
<div id=sds-scroll class=ds-scroll>
<div id=sds-data></div>
</div>
<button id=sds-closebtn class="closebtn dim" title="Close"></button>
</div>
<script id=sds-template type="text/x-handlebars-template">
<div class=ds-title>
{{SectorName}}
<small>({{SectorX}},{{SectorY}})</small>
</div>
<div class="ds-wiki-link sds-wiki-link">
<a target=_blank rel=noopener href="{{SectorWikiURL}}">{{SectorWikiURLNoScheme}}</a>
</div>
<div id=sds-print-links class=ds-print-links>
<a title="Printable booklet" id=sds-booklet target=_blank rel=noopener href="{{BookletURL}}">Booklet</a>
•
<a title="PDF map" id=sds-poster target=_blank rel=noopener href="{{PosterURL}}">Poster</a>
•
<a title="Data as a text file" id=sds-data target=_blank rel=noopener href="{{DataURL}}">Raw Data</a>
(or <a title="Data for spreadsheets" id=sds-data target=_blank rel=noopener href="{{TSVDataURL}}">TSV</a>)
</div>
<div class=sds-status>
{{#Official}}
<a class="official" target=_blank rel=noopener
title="Sector data has been approved by the Traveller 5 Second Survey"
href="doc/credits#official"><span class="bar">▬</span> Official <span class="bar">▬</span></a>
{{/Official}}
{{#InReview}}
<a class="inreview" target=_blank rel=noopener
title="Sector data is being reviewed by the Traveller 5 Second Survey"
href="doc/credits#inreview"><span class="bar">▬</span> In Review <span class="bar">▬</span></a>
{{/InReview}}
{{#Unreviewed}}
<a class="unreviewed" target=_blank rel=noopener
title="Sector data has not yet been reviewed by the Traveller 5 Second Survey"
href="doc/credits#unreviewed"><span class="bar">▬</span> Unreviewed <span class="bar">▬</span></a>
{{/Unreviewed}}
{{#Preserve}}
<a class="preserve" target=_blank rel=noopener
title="This sector is set aside as a Referee's Preserve - the presented data is an example"
href="doc/credits#preserve"><span class="bar">▬</span> Preserve <span class="bar">▬</span></a>
{{/Preserve}}
{{#Apocryphal}}
<a class="apocryphal" target=_blank rel=noopener
title="Sector data is apocryphal - no longer considered official"
href="doc/credits#apocryphal"><span class="bar">▬</span> Apocryphal <span class="bar">▬</span></a>
{{/Apocryphal}}
{{#Unofficial}}
<a class="unofficial" target=_blank rel=noopener
title="Sector data is unofficial"
href="doc/credits#unofficial"><span class="bar">▬</span> Unofficial <span class="bar">▬</span></a>
{{/Unofficial}}
{{#Unmapped}}
{{/Unmapped}}
</div>
<div class="ds-mini-toggle dim"></div>
<div class=ds-mini-hidden>
<div class="ds-credits">
{{#if Credits}}
{{{Credits}}}
{{else}}
{{Attribution}}
{{/if}}
</div>
{{#SectorRef}}
<div>
<a target=_blank rel=noopener href="{{.}}">{{.}}</a>
</div>
{{/SectorRef}}
{{#ProductRef}}
<div>
<p>
<a target=_blank rel=noopener href="{{.}}"><cite>{{../ProductTitle}}</cite></a>
</p>
{{#../ProductAuthor}} <p>{{.}}</p> {{/../ProductAuthor}}
<p>{{../ProductPublisher}}</p>
</div>
{{/ProductRef}}
</script>
<div id=ds-shade></div>
<div id=wds-frame class=ds-frame>
<div id=wds-scroll class=ds-scroll>
<canvas id=wds-world-image width=200 height=200></canvas>
<div id=wds-data></div>
</div>
<button id=wds-closebtn class="closebtn dim" title="Close"></button>
</div>
<script id=wds-template type="text/x-handlebars-template">
<div class=wds-names>
<div title="{{Name}}" class=ds-title>{{#if Name}}{{Name}}{{else}}(Unnamed){{/if}}</div>
{{#if SubsectorName}}
<div class=wds-ssname>{{SubsectorName}} Subsector</div>
{{/if}}
<div class=wds-sectorhex>{{Sector}} {{Hex}}</div>
</div>
<div class="ds-wiki-link wds-wiki-link">
{{#if Name}}
<a style="text-decoration: underline;" target=_blank rel=noopener href="{{world_url}}">{{world_url_noscheme}}</a>
{{/if}}
</div>
<div id=ds-route-link class=link-button>
<a href="#" class=route-icon>Jump Route</a>
</div>
<div class="ds-mini-toggle dim"></div>
<div class=ds-mini-hidden>
<table class=wds-properties>
<colgroup><col style="width:77px"><col style="width:23px"><col></colgroup>
{{#if map_thumb}}
<tbody>
<tr>
<td colspan=3 style="text-align: center;">
<img id=wds-map src="{{map_thumb}}" data-map="{{map}}">
{{#if map_details}}
<div>Source: {{map_details}}</div>
{{/if}}
</td>
</tr>
</tbody>
{{/if}}
{{#if AllegianceName}}
<tbody>
<tr class=wds-deets>
<td>Allegiance:
<td colspan=2><big>{{AllegianceName}}</big> ({{Allegiance}})
</tbody>
{{/if}}
<tbody>
<tr class=wds-deets>
<td>System:
<td colspan=2>
<div class=wds-stars>
{{#Stars}} <span class=wds-star><big>{{code}}</big> <small>{{detail}}</small></span> {{/Stars}}
</div>
<div>
<span class=nowrap>
<big>{{PBG.GG}}</big> <small>Gas Giants</small>
</span>
—
<span class=nowrap>
<big>{{PBG.Belts}}</big> <small>Planetoid Belts</small>
</span>
{{#if OtherWorlds}}
—
<span class=nowrap>
<big>{{OtherWorlds}}</big> <small>Other Worlds</small>
</span>
{{/if}}
</div>
<div class=wds-bases>
{{#Bases}} <span class=wds-base>{{.}}</span> {{/Bases}}
</div>
</tbody>
{{#UWP}}
<tbody class=wds-expandy data-wds-expand=wds-expand-uwp>
<tr class=wds-deets><td>UWP:<td colspan=2><big>{{Starport}} {{Siz}} {{Atm}} {{Hyd}} {{Pop}} {{Gov}} {{Law}} – {{Tech}}<span class=wds-toggle></span></big>
</tbody>
<tbody id=wds-uwp class=wds-decode>
<tr><td>Starport<td>{{Starport}}<td>{{StarportBlurb}}
<tr><td>Size<td>{{Siz}}<td>{{SizBlurb}}
<tr><td>Atmosphere<td>{{Atm}}<td>{{AtmBlurb}}
<tr><td>Hydrosphere<td>{{Hyd}}<td>{{HydBlurb}}
<tr><td>Population<td>{{Pop}}<td>{{PopBlurb}}
<tr><td>Government Type<td>{{Gov}}<td>{{GovBlurb}}
<tr><td>Law Level<td>{{Law}}<td>{{LawBlurb}}
<tr><td>Technology Level<td>{{Tech}}<td>{{TechBlurb}}
</tbody>
{{/UWP}}
{{#Ix}}
<tbody>
<tr class=wds-deets><td>Importance: <td colspan=2><big>{ {{Imp}} }</big>
<span class=wds-imp-blurb>{{ImpBlurb}}</span>
</tbody>
{{/Ix}}
{{#Ex}}
<tbody class=wds-expandy data-wds-expand=wds-expand-ex>
<tr class=wds-deets><td>Economics: <td colspan=2><big>( {{Res}} {{Lab}} {{Inf}} {{Eff}} )<span class=wds-toggle></span></big>
</tbody>
<tbody id=wds-ex class=wds-decode>
<tr><td>Resources<td>{{Res}}<td>{{ResBlurb}}
<tr><td>Labor<td>{{Lab}}<td>{{LabBlurb}}
<tr><td>Infrastructure<td>{{Inf}}<td>{{InfBlurb}}
<tr><td>Efficiency<td>{{Eff}}<td>{{EffBlurb}}
</tbody>
{{/Ex}}
{{#Cx}}
<tbody class=wds-expandy data-wds-expand=wds-expand-cx>
<tr class=wds-deets><td>Culture: <td colspan=2><big>[ {{Het}} {{Acc}} {{Str}} {{Sym}} ]<span class=wds-toggle></span></big>
</tbody>
<tbody id=wds-cx class=wds-decode>
<tr><td>Heterogeneity<td>{{Het}}<td>{{HetBlurb}}
<tr><td>Acceptance<td>{{Acc}}<td>{{AccBlurb}}
<tr><td>Strangeness<td>{{Str}}<td>{{StrBlurb}}
<tr><td>Symbols<td>{{Sym}}<td>{{SymBlurb}}
</tbody>
{{/Cx}}
{{#if TotalPopulation }}
<tbody>
<tr class=wds-deets>
<td style="vertical-align: bottom">Population:
<td colspan=2><big>{{PopMult}} × 10<sup>{{PopExp}}</sup> = {{TotalPopulation}}</big>
</tbody>
{{/if}}
{{#if Nobility}}
<tbody>
<tr class=wds-deets>
<td>Nobility:
<td colspan=2><big class=wds-nobility>{{#Nobility}} <span class=wds-noble>{{.}}</span> {{/Nobility}}</big>
</tbody>
{{/if}}
{{#if Remarks}}
<tbody>
<tr class=wds-deets>
<td>Remarks:
<td colspan=2>
{{#Remarks}}
<span class=nowrap><big>{{code}}</big> <small>{{detail}}</small></span>
{{/Remarks}}
</tbody>
{{/if}}
{{#Zone}}
<tbody>
<tr class=wds-deets>
<td>Travel Zone:
<td colspan=2><big class="wds-zone-{{className}}">{{rule}}</big> <br> <small>Travellers' Aid Society Rating: {{rating}}</small>
</tbody>
{{/Zone}}
</table>
<div id="wds-print-links" class=ds-print-links>
<div id=wds-print-ds-link class=link-button>
<a href="#" class=print-icon>Print</a>
</div>
<div id=wds-print-jump-links>
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=1">J-1</a> •
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=2">J-2</a> •
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=3">J-3</a> •
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=4">J-4</a> •
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=5">J-5</a> •
<a target=_blank rel=noopener href="{{JumpMapURL}}&jump=6">J-6</a>
</div>
</div>
{{#if map_link}}
<div id="wds-map-links" class="ds-map-links">
<a target=_blank rel=noopener href="{{map_link}}">
Generate World Map
</a>
<small>
<br> c/o Traveller5 World Builder
</small>
</div>
{{/if}}
</div>
</script>
<div id="milieu-escape">
Viewing <span id="milieu-field"></span> data.
Tap to return to <span id="milieu-field-default"></span>.
</div>
<!--
<div id="promo-hover">
<button id=promo-closebtn class="closebtn dim" title="Close"></button>
Calling all Free Traders!
<br>
<a target=_blank rel=noopener href="https://www.kickstarter.com/projects/tcon-usa/travellerconusa-2023-20-22-october-2023">Travellercon/USA 2023 Kickstarter</a>
</div>
-->
<div id="cookies">
This site uses cookies.
<a target=_blank href="doc/about#privacy-policy">Details</a>
<button>Accept</button>
</div>
<noscript><div>
This site requires JavaScript.
<a rel="me" href="https://dice.camp/@travellermap"></a>
</div></noscript>
</body>
</html>