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
/// A number of constants to give a name to all characters in this block.
mod constants {
    /// \u{1f680}: '🚀'
    pub const ROCKET: char = '🚀';
    /// \u{1f681}: '🚁'
    pub const HELICOPTER: char = '🚁';
    /// \u{1f682}: '🚂'
    pub const STEAM_LOCOMOTIVE: char = '🚂';
    /// \u{1f683}: '🚃'
    pub const RAILWAY_CAR: char = '🚃';
    /// \u{1f684}: '🚄'
    pub const HIGH_DASH_SPEED_TRAIN: char = '🚄';
    /// \u{1f685}: '🚅'
    pub const HIGH_DASH_SPEED_TRAIN_WITH_BULLET_NOSE: char = '🚅';
    /// \u{1f686}: '🚆'
    pub const TRAIN: char = '🚆';
    /// \u{1f687}: '🚇'
    pub const METRO: char = '🚇';
    /// \u{1f688}: '🚈'
    pub const LIGHT_RAIL: char = '🚈';
    /// \u{1f689}: '🚉'
    pub const STATION: char = '🚉';
    /// \u{1f68a}: '🚊'
    pub const TRAM: char = '🚊';
    /// \u{1f68b}: '🚋'
    pub const TRAM_CAR: char = '🚋';
    /// \u{1f68c}: '🚌'
    pub const BUS: char = '🚌';
    /// \u{1f68d}: '🚍'
    pub const ONCOMING_BUS: char = '🚍';
    /// \u{1f68e}: '🚎'
    pub const TROLLEYBUS: char = '🚎';
    /// \u{1f68f}: '🚏'
    pub const BUS_STOP: char = '🚏';
    /// \u{1f690}: '🚐'
    pub const MINIBUS: char = '🚐';
    /// \u{1f691}: '🚑'
    pub const AMBULANCE: char = '🚑';
    /// \u{1f692}: '🚒'
    pub const FIRE_ENGINE: char = '🚒';
    /// \u{1f693}: '🚓'
    pub const POLICE_CAR: char = '🚓';
    /// \u{1f694}: '🚔'
    pub const ONCOMING_POLICE_CAR: char = '🚔';
    /// \u{1f695}: '🚕'
    pub const TAXI: char = '🚕';
    /// \u{1f696}: '🚖'
    pub const ONCOMING_TAXI: char = '🚖';
    /// \u{1f697}: '🚗'
    pub const AUTOMOBILE: char = '🚗';
    /// \u{1f698}: '🚘'
    pub const ONCOMING_AUTOMOBILE: char = '🚘';
    /// \u{1f699}: '🚙'
    pub const RECREATIONAL_VEHICLE: char = '🚙';
    /// \u{1f69a}: '🚚'
    pub const DELIVERY_TRUCK: char = '🚚';
    /// \u{1f69b}: '🚛'
    pub const ARTICULATED_LORRY: char = '🚛';
    /// \u{1f69c}: '🚜'
    pub const TRACTOR: char = '🚜';
    /// \u{1f69d}: '🚝'
    pub const MONORAIL: char = '🚝';
    /// \u{1f69e}: '🚞'
    pub const MOUNTAIN_RAILWAY: char = '🚞';
    /// \u{1f69f}: '🚟'
    pub const SUSPENSION_RAILWAY: char = '🚟';
    /// \u{1f6a0}: '🚠'
    pub const MOUNTAIN_CABLEWAY: char = '🚠';
    /// \u{1f6a1}: '🚡'
    pub const AERIAL_TRAMWAY: char = '🚡';
    /// \u{1f6a2}: '🚢'
    pub const SHIP: char = '🚢';
    /// \u{1f6a3}: '🚣'
    pub const ROWBOAT: char = '🚣';
    /// \u{1f6a4}: '🚤'
    pub const SPEEDBOAT: char = '🚤';
    /// \u{1f6a5}: '🚥'
    pub const HORIZONTAL_TRAFFIC_LIGHT: char = '🚥';
    /// \u{1f6a6}: '🚦'
    pub const VERTICAL_TRAFFIC_LIGHT: char = '🚦';
    /// \u{1f6a7}: '🚧'
    pub const CONSTRUCTION_SIGN: char = '🚧';
    /// \u{1f6a8}: '🚨'
    pub const POLICE_CARS_REVOLVING_LIGHT: char = '🚨';
    /// \u{1f6a9}: '🚩'
    pub const TRIANGULAR_FLAG_ON_POST: char = '🚩';
    /// \u{1f6aa}: '🚪'
    pub const DOOR: char = '🚪';
    /// \u{1f6ab}: '🚫'
    pub const NO_ENTRY_SIGN: char = '🚫';
    /// \u{1f6ac}: '🚬'
    pub const SMOKING_SYMBOL: char = '🚬';
    /// \u{1f6ad}: '🚭'
    pub const NO_SMOKING_SYMBOL: char = '🚭';
    /// \u{1f6ae}: '🚮'
    pub const PUT_LITTER_IN_ITS_PLACE_SYMBOL: char = '🚮';
    /// \u{1f6af}: '🚯'
    pub const DO_NOT_LITTER_SYMBOL: char = '🚯';
    /// \u{1f6b0}: '🚰'
    pub const POTABLE_WATER_SYMBOL: char = '🚰';
    /// \u{1f6b1}: '🚱'
    pub const NON_DASH_POTABLE_WATER_SYMBOL: char = '🚱';
    /// \u{1f6b2}: '🚲'
    pub const BICYCLE: char = '🚲';
    /// \u{1f6b3}: '🚳'
    pub const NO_BICYCLES: char = '🚳';
    /// \u{1f6b4}: '🚴'
    pub const BICYCLIST: char = '🚴';
    /// \u{1f6b5}: '🚵'
    pub const MOUNTAIN_BICYCLIST: char = '🚵';
    /// \u{1f6b6}: '🚶'
    pub const PEDESTRIAN: char = '🚶';
    /// \u{1f6b7}: '🚷'
    pub const NO_PEDESTRIANS: char = '🚷';
    /// \u{1f6b8}: '🚸'
    pub const CHILDREN_CROSSING: char = '🚸';
    /// \u{1f6b9}: '🚹'
    pub const MENS_SYMBOL: char = '🚹';
    /// \u{1f6ba}: '🚺'
    pub const WOMENS_SYMBOL: char = '🚺';
    /// \u{1f6bb}: '🚻'
    pub const RESTROOM: char = '🚻';
    /// \u{1f6bc}: '🚼'
    pub const BABY_SYMBOL: char = '🚼';
    /// \u{1f6bd}: '🚽'
    pub const TOILET: char = '🚽';
    /// \u{1f6be}: '🚾'
    pub const WATER_CLOSET: char = '🚾';
    /// \u{1f6bf}: '🚿'
    pub const SHOWER: char = '🚿';
    /// \u{1f6c0}: '🛀'
    pub const BATH: char = '🛀';
    /// \u{1f6c1}: '🛁'
    pub const BATHTUB: char = '🛁';
    /// \u{1f6c2}: '🛂'
    pub const PASSPORT_CONTROL: char = '🛂';
    /// \u{1f6c3}: '🛃'
    pub const CUSTOMS: char = '🛃';
    /// \u{1f6c4}: '🛄'
    pub const BAGGAGE_CLAIM: char = '🛄';
    /// \u{1f6c5}: '🛅'
    pub const LEFT_LUGGAGE: char = '🛅';
    /// \u{1f6c6}: '🛆'
    pub const TRIANGLE_WITH_ROUNDED_CORNERS: char = '🛆';
    /// \u{1f6c7}: '🛇'
    pub const PROHIBITED_SIGN: char = '🛇';
    /// \u{1f6c8}: '🛈'
    pub const CIRCLED_INFORMATION_SOURCE: char = '🛈';
    /// \u{1f6c9}: '🛉'
    pub const BOYS_SYMBOL: char = '🛉';
    /// \u{1f6ca}: '🛊'
    pub const GIRLS_SYMBOL: char = '🛊';
    /// \u{1f6cb}: '🛋'
    pub const COUCH_AND_LAMP: char = '🛋';
    /// \u{1f6cc}: '🛌'
    pub const SLEEPING_ACCOMMODATION: char = '🛌';
    /// \u{1f6cd}: '🛍'
    pub const SHOPPING_BAGS: char = '🛍';
    /// \u{1f6ce}: '🛎'
    pub const BELLHOP_BELL: char = '🛎';
    /// \u{1f6cf}: '🛏'
    pub const BED: char = '🛏';
    /// \u{1f6d0}: '🛐'
    pub const PLACE_OF_WORSHIP: char = '🛐';
    /// \u{1f6d1}: '🛑'
    pub const OCTAGONAL_SIGN: char = '🛑';
    /// \u{1f6d2}: '🛒'
    pub const SHOPPING_TROLLEY: char = '🛒';
    /// \u{1f6d3}: '🛓'
    pub const STUPA: char = '🛓';
    /// \u{1f6d4}: '🛔'
    pub const PAGODA: char = '🛔';
    /// \u{1f6d5}: '🛕'
    pub const HINDU_TEMPLE: char = '🛕';
    /// \u{1f6e0}: '🛠'
    pub const HAMMER_AND_WRENCH: char = '🛠';
    /// \u{1f6e1}: '🛡'
    pub const SHIELD: char = '🛡';
    /// \u{1f6e2}: '🛢'
    pub const OIL_DRUM: char = '🛢';
    /// \u{1f6e3}: '🛣'
    pub const MOTORWAY: char = '🛣';
    /// \u{1f6e4}: '🛤'
    pub const RAILWAY_TRACK: char = '🛤';
    /// \u{1f6e5}: '🛥'
    pub const MOTOR_BOAT: char = '🛥';
    /// \u{1f6e6}: '🛦'
    pub const UP_DASH_POINTING_MILITARY_AIRPLANE: char = '🛦';
    /// \u{1f6e7}: '🛧'
    pub const UP_DASH_POINTING_AIRPLANE: char = '🛧';
    /// \u{1f6e8}: '🛨'
    pub const UP_DASH_POINTING_SMALL_AIRPLANE: char = '🛨';
    /// \u{1f6e9}: '🛩'
    pub const SMALL_AIRPLANE: char = '🛩';
    /// \u{1f6ea}: '🛪'
    pub const NORTHEAST_DASH_POINTING_AIRPLANE: char = '🛪';
    /// \u{1f6eb}: '🛫'
    pub const AIRPLANE_DEPARTURE: char = '🛫';
    /// \u{1f6ec}: '🛬'
    pub const AIRPLANE_ARRIVING: char = '🛬';
    /// \u{1f6f0}: '🛰'
    pub const SATELLITE: char = '🛰';
    /// \u{1f6f1}: '🛱'
    pub const ONCOMING_FIRE_ENGINE: char = '🛱';
    /// \u{1f6f2}: '🛲'
    pub const DIESEL_LOCOMOTIVE: char = '🛲';
    /// \u{1f6f3}: '🛳'
    pub const PASSENGER_SHIP: char = '🛳';
    /// \u{1f6f4}: '🛴'
    pub const SCOOTER: char = '🛴';
    /// \u{1f6f5}: '🛵'
    pub const MOTOR_SCOOTER: char = '🛵';
    /// \u{1f6f6}: '🛶'
    pub const CANOE: char = '🛶';
    /// \u{1f6f7}: '🛷'
    pub const SLED: char = '🛷';
    /// \u{1f6f8}: '🛸'
    pub const FLYING_SAUCER: char = '🛸';
    /// \u{1f6f9}: '🛹'
    pub const SKATEBOARD: char = '🛹';
    /// \u{1f6fa}: '🛺'
    pub const AUTO_RICKSHAW: char = '🛺';
}

/// An enum to represent all characters in the TransportandMapSymbols block.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum TransportandMapSymbols {
    /// \u{1f680}: '🚀'
    Rocket,
    /// \u{1f681}: '🚁'
    Helicopter,
    /// \u{1f682}: '🚂'
    SteamLocomotive,
    /// \u{1f683}: '🚃'
    RailwayCar,
    /// \u{1f684}: '🚄'
    HighDashSpeedTrain,
    /// \u{1f685}: '🚅'
    HighDashSpeedTrainWithBulletNose,
    /// \u{1f686}: '🚆'
    Train,
    /// \u{1f687}: '🚇'
    Metro,
    /// \u{1f688}: '🚈'
    LightRail,
    /// \u{1f689}: '🚉'
    Station,
    /// \u{1f68a}: '🚊'
    Tram,
    /// \u{1f68b}: '🚋'
    TramCar,
    /// \u{1f68c}: '🚌'
    Bus,
    /// \u{1f68d}: '🚍'
    OncomingBus,
    /// \u{1f68e}: '🚎'
    Trolleybus,
    /// \u{1f68f}: '🚏'
    BusStop,
    /// \u{1f690}: '🚐'
    Minibus,
    /// \u{1f691}: '🚑'
    Ambulance,
    /// \u{1f692}: '🚒'
    FireEngine,
    /// \u{1f693}: '🚓'
    PoliceCar,
    /// \u{1f694}: '🚔'
    OncomingPoliceCar,
    /// \u{1f695}: '🚕'
    Taxi,
    /// \u{1f696}: '🚖'
    OncomingTaxi,
    /// \u{1f697}: '🚗'
    Automobile,
    /// \u{1f698}: '🚘'
    OncomingAutomobile,
    /// \u{1f699}: '🚙'
    RecreationalVehicle,
    /// \u{1f69a}: '🚚'
    DeliveryTruck,
    /// \u{1f69b}: '🚛'
    ArticulatedLorry,
    /// \u{1f69c}: '🚜'
    Tractor,
    /// \u{1f69d}: '🚝'
    Monorail,
    /// \u{1f69e}: '🚞'
    MountainRailway,
    /// \u{1f69f}: '🚟'
    SuspensionRailway,
    /// \u{1f6a0}: '🚠'
    MountainCableway,
    /// \u{1f6a1}: '🚡'
    AerialTramway,
    /// \u{1f6a2}: '🚢'
    Ship,
    /// \u{1f6a3}: '🚣'
    Rowboat,
    /// \u{1f6a4}: '🚤'
    Speedboat,
    /// \u{1f6a5}: '🚥'
    HorizontalTrafficLight,
    /// \u{1f6a6}: '🚦'
    VerticalTrafficLight,
    /// \u{1f6a7}: '🚧'
    ConstructionSign,
    /// \u{1f6a8}: '🚨'
    PoliceCarsRevolvingLight,
    /// \u{1f6a9}: '🚩'
    TriangularFlagOnPost,
    /// \u{1f6aa}: '🚪'
    Door,
    /// \u{1f6ab}: '🚫'
    NoEntrySign,
    /// \u{1f6ac}: '🚬'
    SmokingSymbol,
    /// \u{1f6ad}: '🚭'
    NoSmokingSymbol,
    /// \u{1f6ae}: '🚮'
    PutLitterInItsPlaceSymbol,
    /// \u{1f6af}: '🚯'
    DoNotLitterSymbol,
    /// \u{1f6b0}: '🚰'
    PotableWaterSymbol,
    /// \u{1f6b1}: '🚱'
    NonDashPotableWaterSymbol,
    /// \u{1f6b2}: '🚲'
    Bicycle,
    /// \u{1f6b3}: '🚳'
    NoBicycles,
    /// \u{1f6b4}: '🚴'
    Bicyclist,
    /// \u{1f6b5}: '🚵'
    MountainBicyclist,
    /// \u{1f6b6}: '🚶'
    Pedestrian,
    /// \u{1f6b7}: '🚷'
    NoPedestrians,
    /// \u{1f6b8}: '🚸'
    ChildrenCrossing,
    /// \u{1f6b9}: '🚹'
    MensSymbol,
    /// \u{1f6ba}: '🚺'
    WomensSymbol,
    /// \u{1f6bb}: '🚻'
    Restroom,
    /// \u{1f6bc}: '🚼'
    BabySymbol,
    /// \u{1f6bd}: '🚽'
    Toilet,
    /// \u{1f6be}: '🚾'
    WaterCloset,
    /// \u{1f6bf}: '🚿'
    Shower,
    /// \u{1f6c0}: '🛀'
    Bath,
    /// \u{1f6c1}: '🛁'
    Bathtub,
    /// \u{1f6c2}: '🛂'
    PassportControl,
    /// \u{1f6c3}: '🛃'
    Customs,
    /// \u{1f6c4}: '🛄'
    BaggageClaim,
    /// \u{1f6c5}: '🛅'
    LeftLuggage,
    /// \u{1f6c6}: '🛆'
    TriangleWithRoundedCorners,
    /// \u{1f6c7}: '🛇'
    ProhibitedSign,
    /// \u{1f6c8}: '🛈'
    CircledInformationSource,
    /// \u{1f6c9}: '🛉'
    BoysSymbol,
    /// \u{1f6ca}: '🛊'
    GirlsSymbol,
    /// \u{1f6cb}: '🛋'
    CouchAndLamp,
    /// \u{1f6cc}: '🛌'
    SleepingAccommodation,
    /// \u{1f6cd}: '🛍'
    ShoppingBags,
    /// \u{1f6ce}: '🛎'
    BellhopBell,
    /// \u{1f6cf}: '🛏'
    Bed,
    /// \u{1f6d0}: '🛐'
    PlaceOfWorship,
    /// \u{1f6d1}: '🛑'
    OctagonalSign,
    /// \u{1f6d2}: '🛒'
    ShoppingTrolley,
    /// \u{1f6d3}: '🛓'
    Stupa,
    /// \u{1f6d4}: '🛔'
    Pagoda,
    /// \u{1f6d5}: '🛕'
    HinduTemple,
    /// \u{1f6e0}: '🛠'
    HammerAndWrench,
    /// \u{1f6e1}: '🛡'
    Shield,
    /// \u{1f6e2}: '🛢'
    OilDrum,
    /// \u{1f6e3}: '🛣'
    Motorway,
    /// \u{1f6e4}: '🛤'
    RailwayTrack,
    /// \u{1f6e5}: '🛥'
    MotorBoat,
    /// \u{1f6e6}: '🛦'
    UpDashPointingMilitaryAirplane,
    /// \u{1f6e7}: '🛧'
    UpDashPointingAirplane,
    /// \u{1f6e8}: '🛨'
    UpDashPointingSmallAirplane,
    /// \u{1f6e9}: '🛩'
    SmallAirplane,
    /// \u{1f6ea}: '🛪'
    NortheastDashPointingAirplane,
    /// \u{1f6eb}: '🛫'
    AirplaneDeparture,
    /// \u{1f6ec}: '🛬'
    AirplaneArriving,
    /// \u{1f6f0}: '🛰'
    Satellite,
    /// \u{1f6f1}: '🛱'
    OncomingFireEngine,
    /// \u{1f6f2}: '🛲'
    DieselLocomotive,
    /// \u{1f6f3}: '🛳'
    PassengerShip,
    /// \u{1f6f4}: '🛴'
    Scooter,
    /// \u{1f6f5}: '🛵'
    MotorScooter,
    /// \u{1f6f6}: '🛶'
    Canoe,
    /// \u{1f6f7}: '🛷'
    Sled,
    /// \u{1f6f8}: '🛸'
    FlyingSaucer,
    /// \u{1f6f9}: '🛹'
    Skateboard,
    /// \u{1f6fa}: '🛺'
    AutoRickshaw,
}

impl Into<char> for TransportandMapSymbols {
    fn into(self) -> char {
        use constants::*;
        match self {
            TransportandMapSymbols::Rocket => ROCKET,
            TransportandMapSymbols::Helicopter => HELICOPTER,
            TransportandMapSymbols::SteamLocomotive => STEAM_LOCOMOTIVE,
            TransportandMapSymbols::RailwayCar => RAILWAY_CAR,
            TransportandMapSymbols::HighDashSpeedTrain => HIGH_DASH_SPEED_TRAIN,
            TransportandMapSymbols::HighDashSpeedTrainWithBulletNose => HIGH_DASH_SPEED_TRAIN_WITH_BULLET_NOSE,
            TransportandMapSymbols::Train => TRAIN,
            TransportandMapSymbols::Metro => METRO,
            TransportandMapSymbols::LightRail => LIGHT_RAIL,
            TransportandMapSymbols::Station => STATION,
            TransportandMapSymbols::Tram => TRAM,
            TransportandMapSymbols::TramCar => TRAM_CAR,
            TransportandMapSymbols::Bus => BUS,
            TransportandMapSymbols::OncomingBus => ONCOMING_BUS,
            TransportandMapSymbols::Trolleybus => TROLLEYBUS,
            TransportandMapSymbols::BusStop => BUS_STOP,
            TransportandMapSymbols::Minibus => MINIBUS,
            TransportandMapSymbols::Ambulance => AMBULANCE,
            TransportandMapSymbols::FireEngine => FIRE_ENGINE,
            TransportandMapSymbols::PoliceCar => POLICE_CAR,
            TransportandMapSymbols::OncomingPoliceCar => ONCOMING_POLICE_CAR,
            TransportandMapSymbols::Taxi => TAXI,
            TransportandMapSymbols::OncomingTaxi => ONCOMING_TAXI,
            TransportandMapSymbols::Automobile => AUTOMOBILE,
            TransportandMapSymbols::OncomingAutomobile => ONCOMING_AUTOMOBILE,
            TransportandMapSymbols::RecreationalVehicle => RECREATIONAL_VEHICLE,
            TransportandMapSymbols::DeliveryTruck => DELIVERY_TRUCK,
            TransportandMapSymbols::ArticulatedLorry => ARTICULATED_LORRY,
            TransportandMapSymbols::Tractor => TRACTOR,
            TransportandMapSymbols::Monorail => MONORAIL,
            TransportandMapSymbols::MountainRailway => MOUNTAIN_RAILWAY,
            TransportandMapSymbols::SuspensionRailway => SUSPENSION_RAILWAY,
            TransportandMapSymbols::MountainCableway => MOUNTAIN_CABLEWAY,
            TransportandMapSymbols::AerialTramway => AERIAL_TRAMWAY,
            TransportandMapSymbols::Ship => SHIP,
            TransportandMapSymbols::Rowboat => ROWBOAT,
            TransportandMapSymbols::Speedboat => SPEEDBOAT,
            TransportandMapSymbols::HorizontalTrafficLight => HORIZONTAL_TRAFFIC_LIGHT,
            TransportandMapSymbols::VerticalTrafficLight => VERTICAL_TRAFFIC_LIGHT,
            TransportandMapSymbols::ConstructionSign => CONSTRUCTION_SIGN,
            TransportandMapSymbols::PoliceCarsRevolvingLight => POLICE_CARS_REVOLVING_LIGHT,
            TransportandMapSymbols::TriangularFlagOnPost => TRIANGULAR_FLAG_ON_POST,
            TransportandMapSymbols::Door => DOOR,
            TransportandMapSymbols::NoEntrySign => NO_ENTRY_SIGN,
            TransportandMapSymbols::SmokingSymbol => SMOKING_SYMBOL,
            TransportandMapSymbols::NoSmokingSymbol => NO_SMOKING_SYMBOL,
            TransportandMapSymbols::PutLitterInItsPlaceSymbol => PUT_LITTER_IN_ITS_PLACE_SYMBOL,
            TransportandMapSymbols::DoNotLitterSymbol => DO_NOT_LITTER_SYMBOL,
            TransportandMapSymbols::PotableWaterSymbol => POTABLE_WATER_SYMBOL,
            TransportandMapSymbols::NonDashPotableWaterSymbol => NON_DASH_POTABLE_WATER_SYMBOL,
            TransportandMapSymbols::Bicycle => BICYCLE,
            TransportandMapSymbols::NoBicycles => NO_BICYCLES,
            TransportandMapSymbols::Bicyclist => BICYCLIST,
            TransportandMapSymbols::MountainBicyclist => MOUNTAIN_BICYCLIST,
            TransportandMapSymbols::Pedestrian => PEDESTRIAN,
            TransportandMapSymbols::NoPedestrians => NO_PEDESTRIANS,
            TransportandMapSymbols::ChildrenCrossing => CHILDREN_CROSSING,
            TransportandMapSymbols::MensSymbol => MENS_SYMBOL,
            TransportandMapSymbols::WomensSymbol => WOMENS_SYMBOL,
            TransportandMapSymbols::Restroom => RESTROOM,
            TransportandMapSymbols::BabySymbol => BABY_SYMBOL,
            TransportandMapSymbols::Toilet => TOILET,
            TransportandMapSymbols::WaterCloset => WATER_CLOSET,
            TransportandMapSymbols::Shower => SHOWER,
            TransportandMapSymbols::Bath => BATH,
            TransportandMapSymbols::Bathtub => BATHTUB,
            TransportandMapSymbols::PassportControl => PASSPORT_CONTROL,
            TransportandMapSymbols::Customs => CUSTOMS,
            TransportandMapSymbols::BaggageClaim => BAGGAGE_CLAIM,
            TransportandMapSymbols::LeftLuggage => LEFT_LUGGAGE,
            TransportandMapSymbols::TriangleWithRoundedCorners => TRIANGLE_WITH_ROUNDED_CORNERS,
            TransportandMapSymbols::ProhibitedSign => PROHIBITED_SIGN,
            TransportandMapSymbols::CircledInformationSource => CIRCLED_INFORMATION_SOURCE,
            TransportandMapSymbols::BoysSymbol => BOYS_SYMBOL,
            TransportandMapSymbols::GirlsSymbol => GIRLS_SYMBOL,
            TransportandMapSymbols::CouchAndLamp => COUCH_AND_LAMP,
            TransportandMapSymbols::SleepingAccommodation => SLEEPING_ACCOMMODATION,
            TransportandMapSymbols::ShoppingBags => SHOPPING_BAGS,
            TransportandMapSymbols::BellhopBell => BELLHOP_BELL,
            TransportandMapSymbols::Bed => BED,
            TransportandMapSymbols::PlaceOfWorship => PLACE_OF_WORSHIP,
            TransportandMapSymbols::OctagonalSign => OCTAGONAL_SIGN,
            TransportandMapSymbols::ShoppingTrolley => SHOPPING_TROLLEY,
            TransportandMapSymbols::Stupa => STUPA,
            TransportandMapSymbols::Pagoda => PAGODA,
            TransportandMapSymbols::HinduTemple => HINDU_TEMPLE,
            TransportandMapSymbols::HammerAndWrench => HAMMER_AND_WRENCH,
            TransportandMapSymbols::Shield => SHIELD,
            TransportandMapSymbols::OilDrum => OIL_DRUM,
            TransportandMapSymbols::Motorway => MOTORWAY,
            TransportandMapSymbols::RailwayTrack => RAILWAY_TRACK,
            TransportandMapSymbols::MotorBoat => MOTOR_BOAT,
            TransportandMapSymbols::UpDashPointingMilitaryAirplane => UP_DASH_POINTING_MILITARY_AIRPLANE,
            TransportandMapSymbols::UpDashPointingAirplane => UP_DASH_POINTING_AIRPLANE,
            TransportandMapSymbols::UpDashPointingSmallAirplane => UP_DASH_POINTING_SMALL_AIRPLANE,
            TransportandMapSymbols::SmallAirplane => SMALL_AIRPLANE,
            TransportandMapSymbols::NortheastDashPointingAirplane => NORTHEAST_DASH_POINTING_AIRPLANE,
            TransportandMapSymbols::AirplaneDeparture => AIRPLANE_DEPARTURE,
            TransportandMapSymbols::AirplaneArriving => AIRPLANE_ARRIVING,
            TransportandMapSymbols::Satellite => SATELLITE,
            TransportandMapSymbols::OncomingFireEngine => ONCOMING_FIRE_ENGINE,
            TransportandMapSymbols::DieselLocomotive => DIESEL_LOCOMOTIVE,
            TransportandMapSymbols::PassengerShip => PASSENGER_SHIP,
            TransportandMapSymbols::Scooter => SCOOTER,
            TransportandMapSymbols::MotorScooter => MOTOR_SCOOTER,
            TransportandMapSymbols::Canoe => CANOE,
            TransportandMapSymbols::Sled => SLED,
            TransportandMapSymbols::FlyingSaucer => FLYING_SAUCER,
            TransportandMapSymbols::Skateboard => SKATEBOARD,
            TransportandMapSymbols::AutoRickshaw => AUTO_RICKSHAW,
        }
    }
}

impl std::convert::TryFrom<char> for TransportandMapSymbols {
    type Error = ();
    fn try_from(c: char) -> Result<Self, Self::Error> {
        use constants::*;
        match c {
            ROCKET => Ok(TransportandMapSymbols::Rocket),
            HELICOPTER => Ok(TransportandMapSymbols::Helicopter),
            STEAM_LOCOMOTIVE => Ok(TransportandMapSymbols::SteamLocomotive),
            RAILWAY_CAR => Ok(TransportandMapSymbols::RailwayCar),
            HIGH_DASH_SPEED_TRAIN => Ok(TransportandMapSymbols::HighDashSpeedTrain),
            HIGH_DASH_SPEED_TRAIN_WITH_BULLET_NOSE => Ok(TransportandMapSymbols::HighDashSpeedTrainWithBulletNose),
            TRAIN => Ok(TransportandMapSymbols::Train),
            METRO => Ok(TransportandMapSymbols::Metro),
            LIGHT_RAIL => Ok(TransportandMapSymbols::LightRail),
            STATION => Ok(TransportandMapSymbols::Station),
            TRAM => Ok(TransportandMapSymbols::Tram),
            TRAM_CAR => Ok(TransportandMapSymbols::TramCar),
            BUS => Ok(TransportandMapSymbols::Bus),
            ONCOMING_BUS => Ok(TransportandMapSymbols::OncomingBus),
            TROLLEYBUS => Ok(TransportandMapSymbols::Trolleybus),
            BUS_STOP => Ok(TransportandMapSymbols::BusStop),
            MINIBUS => Ok(TransportandMapSymbols::Minibus),
            AMBULANCE => Ok(TransportandMapSymbols::Ambulance),
            FIRE_ENGINE => Ok(TransportandMapSymbols::FireEngine),
            POLICE_CAR => Ok(TransportandMapSymbols::PoliceCar),
            ONCOMING_POLICE_CAR => Ok(TransportandMapSymbols::OncomingPoliceCar),
            TAXI => Ok(TransportandMapSymbols::Taxi),
            ONCOMING_TAXI => Ok(TransportandMapSymbols::OncomingTaxi),
            AUTOMOBILE => Ok(TransportandMapSymbols::Automobile),
            ONCOMING_AUTOMOBILE => Ok(TransportandMapSymbols::OncomingAutomobile),
            RECREATIONAL_VEHICLE => Ok(TransportandMapSymbols::RecreationalVehicle),
            DELIVERY_TRUCK => Ok(TransportandMapSymbols::DeliveryTruck),
            ARTICULATED_LORRY => Ok(TransportandMapSymbols::ArticulatedLorry),
            TRACTOR => Ok(TransportandMapSymbols::Tractor),
            MONORAIL => Ok(TransportandMapSymbols::Monorail),
            MOUNTAIN_RAILWAY => Ok(TransportandMapSymbols::MountainRailway),
            SUSPENSION_RAILWAY => Ok(TransportandMapSymbols::SuspensionRailway),
            MOUNTAIN_CABLEWAY => Ok(TransportandMapSymbols::MountainCableway),
            AERIAL_TRAMWAY => Ok(TransportandMapSymbols::AerialTramway),
            SHIP => Ok(TransportandMapSymbols::Ship),
            ROWBOAT => Ok(TransportandMapSymbols::Rowboat),
            SPEEDBOAT => Ok(TransportandMapSymbols::Speedboat),
            HORIZONTAL_TRAFFIC_LIGHT => Ok(TransportandMapSymbols::HorizontalTrafficLight),
            VERTICAL_TRAFFIC_LIGHT => Ok(TransportandMapSymbols::VerticalTrafficLight),
            CONSTRUCTION_SIGN => Ok(TransportandMapSymbols::ConstructionSign),
            POLICE_CARS_REVOLVING_LIGHT => Ok(TransportandMapSymbols::PoliceCarsRevolvingLight),
            TRIANGULAR_FLAG_ON_POST => Ok(TransportandMapSymbols::TriangularFlagOnPost),
            DOOR => Ok(TransportandMapSymbols::Door),
            NO_ENTRY_SIGN => Ok(TransportandMapSymbols::NoEntrySign),
            SMOKING_SYMBOL => Ok(TransportandMapSymbols::SmokingSymbol),
            NO_SMOKING_SYMBOL => Ok(TransportandMapSymbols::NoSmokingSymbol),
            PUT_LITTER_IN_ITS_PLACE_SYMBOL => Ok(TransportandMapSymbols::PutLitterInItsPlaceSymbol),
            DO_NOT_LITTER_SYMBOL => Ok(TransportandMapSymbols::DoNotLitterSymbol),
            POTABLE_WATER_SYMBOL => Ok(TransportandMapSymbols::PotableWaterSymbol),
            NON_DASH_POTABLE_WATER_SYMBOL => Ok(TransportandMapSymbols::NonDashPotableWaterSymbol),
            BICYCLE => Ok(TransportandMapSymbols::Bicycle),
            NO_BICYCLES => Ok(TransportandMapSymbols::NoBicycles),
            BICYCLIST => Ok(TransportandMapSymbols::Bicyclist),
            MOUNTAIN_BICYCLIST => Ok(TransportandMapSymbols::MountainBicyclist),
            PEDESTRIAN => Ok(TransportandMapSymbols::Pedestrian),
            NO_PEDESTRIANS => Ok(TransportandMapSymbols::NoPedestrians),
            CHILDREN_CROSSING => Ok(TransportandMapSymbols::ChildrenCrossing),
            MENS_SYMBOL => Ok(TransportandMapSymbols::MensSymbol),
            WOMENS_SYMBOL => Ok(TransportandMapSymbols::WomensSymbol),
            RESTROOM => Ok(TransportandMapSymbols::Restroom),
            BABY_SYMBOL => Ok(TransportandMapSymbols::BabySymbol),
            TOILET => Ok(TransportandMapSymbols::Toilet),
            WATER_CLOSET => Ok(TransportandMapSymbols::WaterCloset),
            SHOWER => Ok(TransportandMapSymbols::Shower),
            BATH => Ok(TransportandMapSymbols::Bath),
            BATHTUB => Ok(TransportandMapSymbols::Bathtub),
            PASSPORT_CONTROL => Ok(TransportandMapSymbols::PassportControl),
            CUSTOMS => Ok(TransportandMapSymbols::Customs),
            BAGGAGE_CLAIM => Ok(TransportandMapSymbols::BaggageClaim),
            LEFT_LUGGAGE => Ok(TransportandMapSymbols::LeftLuggage),
            TRIANGLE_WITH_ROUNDED_CORNERS => Ok(TransportandMapSymbols::TriangleWithRoundedCorners),
            PROHIBITED_SIGN => Ok(TransportandMapSymbols::ProhibitedSign),
            CIRCLED_INFORMATION_SOURCE => Ok(TransportandMapSymbols::CircledInformationSource),
            BOYS_SYMBOL => Ok(TransportandMapSymbols::BoysSymbol),
            GIRLS_SYMBOL => Ok(TransportandMapSymbols::GirlsSymbol),
            COUCH_AND_LAMP => Ok(TransportandMapSymbols::CouchAndLamp),
            SLEEPING_ACCOMMODATION => Ok(TransportandMapSymbols::SleepingAccommodation),
            SHOPPING_BAGS => Ok(TransportandMapSymbols::ShoppingBags),
            BELLHOP_BELL => Ok(TransportandMapSymbols::BellhopBell),
            BED => Ok(TransportandMapSymbols::Bed),
            PLACE_OF_WORSHIP => Ok(TransportandMapSymbols::PlaceOfWorship),
            OCTAGONAL_SIGN => Ok(TransportandMapSymbols::OctagonalSign),
            SHOPPING_TROLLEY => Ok(TransportandMapSymbols::ShoppingTrolley),
            STUPA => Ok(TransportandMapSymbols::Stupa),
            PAGODA => Ok(TransportandMapSymbols::Pagoda),
            HINDU_TEMPLE => Ok(TransportandMapSymbols::HinduTemple),
            HAMMER_AND_WRENCH => Ok(TransportandMapSymbols::HammerAndWrench),
            SHIELD => Ok(TransportandMapSymbols::Shield),
            OIL_DRUM => Ok(TransportandMapSymbols::OilDrum),
            MOTORWAY => Ok(TransportandMapSymbols::Motorway),
            RAILWAY_TRACK => Ok(TransportandMapSymbols::RailwayTrack),
            MOTOR_BOAT => Ok(TransportandMapSymbols::MotorBoat),
            UP_DASH_POINTING_MILITARY_AIRPLANE => Ok(TransportandMapSymbols::UpDashPointingMilitaryAirplane),
            UP_DASH_POINTING_AIRPLANE => Ok(TransportandMapSymbols::UpDashPointingAirplane),
            UP_DASH_POINTING_SMALL_AIRPLANE => Ok(TransportandMapSymbols::UpDashPointingSmallAirplane),
            SMALL_AIRPLANE => Ok(TransportandMapSymbols::SmallAirplane),
            NORTHEAST_DASH_POINTING_AIRPLANE => Ok(TransportandMapSymbols::NortheastDashPointingAirplane),
            AIRPLANE_DEPARTURE => Ok(TransportandMapSymbols::AirplaneDeparture),
            AIRPLANE_ARRIVING => Ok(TransportandMapSymbols::AirplaneArriving),
            SATELLITE => Ok(TransportandMapSymbols::Satellite),
            ONCOMING_FIRE_ENGINE => Ok(TransportandMapSymbols::OncomingFireEngine),
            DIESEL_LOCOMOTIVE => Ok(TransportandMapSymbols::DieselLocomotive),
            PASSENGER_SHIP => Ok(TransportandMapSymbols::PassengerShip),
            SCOOTER => Ok(TransportandMapSymbols::Scooter),
            MOTOR_SCOOTER => Ok(TransportandMapSymbols::MotorScooter),
            CANOE => Ok(TransportandMapSymbols::Canoe),
            SLED => Ok(TransportandMapSymbols::Sled),
            FLYING_SAUCER => Ok(TransportandMapSymbols::FlyingSaucer),
            SKATEBOARD => Ok(TransportandMapSymbols::Skateboard),
            AUTO_RICKSHAW => Ok(TransportandMapSymbols::AutoRickshaw),
            _ => Err(()),
        }
    }
}

impl Into<u32> for TransportandMapSymbols {
    fn into(self) -> u32 {
        let c: char = self.into();
        let hex = c
            .escape_unicode()
            .to_string()
            .replace("\\u{", "")
            .replace("}", "");
        u32::from_str_radix(&hex, 16).unwrap()
    }
}

impl std::convert::TryFrom<u32> for TransportandMapSymbols {
    type Error = ();
    fn try_from(u: u32) -> Result<Self, Self::Error> {
        if let Ok(c) = char::try_from(u) {
            Self::try_from(c)
        } else {
            Err(())
        }
    }
}

impl Iterator for TransportandMapSymbols {
    type Item = Self;
    fn next(&mut self) -> Option<Self> {
        let index: u32 = (*self).into();
        use std::convert::TryFrom;
        Self::try_from(index + 1).ok()
    }
}

impl TransportandMapSymbols {
    /// The character with the lowest index in this unicode block
    pub fn new() -> Self {
        TransportandMapSymbols::Rocket
    }

    /// The character's name, all lowercase and space-separated
    pub fn name(&self) -> &str {
        match self {
            TransportandMapSymbols::Rocket => "rocket",
            TransportandMapSymbols::Helicopter => "helicopter",
            TransportandMapSymbols::SteamLocomotive => "steam locomotive",
            TransportandMapSymbols::RailwayCar => "railway car",
            TransportandMapSymbols::HighDashSpeedTrain => "high-speed train",
            TransportandMapSymbols::HighDashSpeedTrainWithBulletNose => "high-speed train with bullet nose",
            TransportandMapSymbols::Train => "train",
            TransportandMapSymbols::Metro => "metro",
            TransportandMapSymbols::LightRail => "light rail",
            TransportandMapSymbols::Station => "station",
            TransportandMapSymbols::Tram => "tram",
            TransportandMapSymbols::TramCar => "tram car",
            TransportandMapSymbols::Bus => "bus",
            TransportandMapSymbols::OncomingBus => "oncoming bus",
            TransportandMapSymbols::Trolleybus => "trolleybus",
            TransportandMapSymbols::BusStop => "bus stop",
            TransportandMapSymbols::Minibus => "minibus",
            TransportandMapSymbols::Ambulance => "ambulance",
            TransportandMapSymbols::FireEngine => "fire engine",
            TransportandMapSymbols::PoliceCar => "police car",
            TransportandMapSymbols::OncomingPoliceCar => "oncoming police car",
            TransportandMapSymbols::Taxi => "taxi",
            TransportandMapSymbols::OncomingTaxi => "oncoming taxi",
            TransportandMapSymbols::Automobile => "automobile",
            TransportandMapSymbols::OncomingAutomobile => "oncoming automobile",
            TransportandMapSymbols::RecreationalVehicle => "recreational vehicle",
            TransportandMapSymbols::DeliveryTruck => "delivery truck",
            TransportandMapSymbols::ArticulatedLorry => "articulated lorry",
            TransportandMapSymbols::Tractor => "tractor",
            TransportandMapSymbols::Monorail => "monorail",
            TransportandMapSymbols::MountainRailway => "mountain railway",
            TransportandMapSymbols::SuspensionRailway => "suspension railway",
            TransportandMapSymbols::MountainCableway => "mountain cableway",
            TransportandMapSymbols::AerialTramway => "aerial tramway",
            TransportandMapSymbols::Ship => "ship",
            TransportandMapSymbols::Rowboat => "rowboat",
            TransportandMapSymbols::Speedboat => "speedboat",
            TransportandMapSymbols::HorizontalTrafficLight => "horizontal traffic light",
            TransportandMapSymbols::VerticalTrafficLight => "vertical traffic light",
            TransportandMapSymbols::ConstructionSign => "construction sign",
            TransportandMapSymbols::PoliceCarsRevolvingLight => "police cars revolving light",
            TransportandMapSymbols::TriangularFlagOnPost => "triangular flag on post",
            TransportandMapSymbols::Door => "door",
            TransportandMapSymbols::NoEntrySign => "no entry sign",
            TransportandMapSymbols::SmokingSymbol => "smoking symbol",
            TransportandMapSymbols::NoSmokingSymbol => "no smoking symbol",
            TransportandMapSymbols::PutLitterInItsPlaceSymbol => "put litter in its place symbol",
            TransportandMapSymbols::DoNotLitterSymbol => "do not litter symbol",
            TransportandMapSymbols::PotableWaterSymbol => "potable water symbol",
            TransportandMapSymbols::NonDashPotableWaterSymbol => "non-potable water symbol",
            TransportandMapSymbols::Bicycle => "bicycle",
            TransportandMapSymbols::NoBicycles => "no bicycles",
            TransportandMapSymbols::Bicyclist => "bicyclist",
            TransportandMapSymbols::MountainBicyclist => "mountain bicyclist",
            TransportandMapSymbols::Pedestrian => "pedestrian",
            TransportandMapSymbols::NoPedestrians => "no pedestrians",
            TransportandMapSymbols::ChildrenCrossing => "children crossing",
            TransportandMapSymbols::MensSymbol => "mens symbol",
            TransportandMapSymbols::WomensSymbol => "womens symbol",
            TransportandMapSymbols::Restroom => "restroom",
            TransportandMapSymbols::BabySymbol => "baby symbol",
            TransportandMapSymbols::Toilet => "toilet",
            TransportandMapSymbols::WaterCloset => "water closet",
            TransportandMapSymbols::Shower => "shower",
            TransportandMapSymbols::Bath => "bath",
            TransportandMapSymbols::Bathtub => "bathtub",
            TransportandMapSymbols::PassportControl => "passport control",
            TransportandMapSymbols::Customs => "customs",
            TransportandMapSymbols::BaggageClaim => "baggage claim",
            TransportandMapSymbols::LeftLuggage => "left luggage",
            TransportandMapSymbols::TriangleWithRoundedCorners => "triangle with rounded corners",
            TransportandMapSymbols::ProhibitedSign => "prohibited sign",
            TransportandMapSymbols::CircledInformationSource => "circled information source",
            TransportandMapSymbols::BoysSymbol => "boys symbol",
            TransportandMapSymbols::GirlsSymbol => "girls symbol",
            TransportandMapSymbols::CouchAndLamp => "couch and lamp",
            TransportandMapSymbols::SleepingAccommodation => "sleeping accommodation",
            TransportandMapSymbols::ShoppingBags => "shopping bags",
            TransportandMapSymbols::BellhopBell => "bellhop bell",
            TransportandMapSymbols::Bed => "bed",
            TransportandMapSymbols::PlaceOfWorship => "place of worship",
            TransportandMapSymbols::OctagonalSign => "octagonal sign",
            TransportandMapSymbols::ShoppingTrolley => "shopping trolley",
            TransportandMapSymbols::Stupa => "stupa",
            TransportandMapSymbols::Pagoda => "pagoda",
            TransportandMapSymbols::HinduTemple => "hindu temple",
            TransportandMapSymbols::HammerAndWrench => "hammer and wrench",
            TransportandMapSymbols::Shield => "shield",
            TransportandMapSymbols::OilDrum => "oil drum",
            TransportandMapSymbols::Motorway => "motorway",
            TransportandMapSymbols::RailwayTrack => "railway track",
            TransportandMapSymbols::MotorBoat => "motor boat",
            TransportandMapSymbols::UpDashPointingMilitaryAirplane => "up-pointing military airplane",
            TransportandMapSymbols::UpDashPointingAirplane => "up-pointing airplane",
            TransportandMapSymbols::UpDashPointingSmallAirplane => "up-pointing small airplane",
            TransportandMapSymbols::SmallAirplane => "small airplane",
            TransportandMapSymbols::NortheastDashPointingAirplane => "northeast-pointing airplane",
            TransportandMapSymbols::AirplaneDeparture => "airplane departure",
            TransportandMapSymbols::AirplaneArriving => "airplane arriving",
            TransportandMapSymbols::Satellite => "satellite",
            TransportandMapSymbols::OncomingFireEngine => "oncoming fire engine",
            TransportandMapSymbols::DieselLocomotive => "diesel locomotive",
            TransportandMapSymbols::PassengerShip => "passenger ship",
            TransportandMapSymbols::Scooter => "scooter",
            TransportandMapSymbols::MotorScooter => "motor scooter",
            TransportandMapSymbols::Canoe => "canoe",
            TransportandMapSymbols::Sled => "sled",
            TransportandMapSymbols::FlyingSaucer => "flying saucer",
            TransportandMapSymbols::Skateboard => "skateboard",
            TransportandMapSymbols::AutoRickshaw => "auto rickshaw",
        }
    }
}