Matthias Nott
2 days ago eb62fc6c4c21fa4436dcf1283daa2be4e34d6f6f
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
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 250" width="600" height="250">
  <rect width="600" height="250" fill="white"/>
  <!-- Title -->
  <text x="300" y="28" font-family="Arial, sans-serif" font-size="16" font-weight="bold" text-anchor="middle" fill="black">ICAO Chart Symbols — Spot Elevations</text>
  <!-- ===== A) General spot elevation ===== -->
  <g transform="translate(75, 120)">
    <!-- Small dot -->
    <circle cx="0" cy="0" r="3" fill="black"/>
    <!-- Elevation number next to dot -->
    <text x="10" y="5" font-family="Arial, sans-serif" font-size="14" fill="black">1234</text>
    <!-- Label -->
    <text x="20" y="38" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">A)</text>
    <text x="20" y="53" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">General spot</text>
    <text x="20" y="66" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">elevation</text>
  </g>
  <!-- ===== B) Highest spot elevation on chart ===== -->
  <g transform="translate(225, 120)">
    <!-- Larger bold dot -->
    <circle cx="0" cy="0" r="5" fill="black"/>
    <!-- Bold elevation number -->
    <text x="10" y="6" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="black">4808</text>
    <!-- Underline to indicate highest -->
    <line x1="10" y1="10" x2="54" y2="10" stroke="black" stroke-width="1.5"/>
    <!-- Label -->
    <text x="25" y="38" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">B)</text>
    <text x="25" y="53" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Highest spot</text>
    <text x="25" y="66" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">elevation on chart</text>
  </g>
  <!-- ===== C) Mountain peak / summit (filled triangle) ===== -->
  <g transform="translate(390, 120)">
    <!-- Filled triangle pointing up -->
    <polygon points="0,-22 -16,12 16,12" fill="black"/>
    <!-- Elevation number -->
    <text x="22" y="-10" font-family="Arial, sans-serif" font-size="13" fill="black">2962</text>
    <!-- Label -->
    <text x="0" y="38" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">C)</text>
    <text x="0" y="53" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Mountain peak</text>
    <text x="0" y="66" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">/ summit</text>
  </g>
  <!-- ===== D) Trigonometric point ===== -->
  <g transform="translate(530, 120)">
    <!-- Open triangle -->
    <polygon points="0,-22 -16,12 16,12" fill="none" stroke="black" stroke-width="2"/>
    <!-- Dot in center -->
    <circle cx="0" cy="3" r="3" fill="black"/>
    <!-- Elevation number -->
    <text x="22" y="-10" font-family="Arial, sans-serif" font-size="13" fill="black">1543</text>
    <!-- Label -->
    <text x="0" y="38" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">D)</text>
    <text x="0" y="53" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Trigonometric</text>
    <text x="0" y="66" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">point</text>
  </g>
  <!-- Dividers -->
  <line x1="150" y1="50" x2="150" y2="220" stroke="#cccccc" stroke-width="1" stroke-dasharray="4,4"/>
  <line x1="300" y1="50" x2="300" y2="220" stroke="#cccccc" stroke-width="1" stroke-dasharray="4,4"/>
  <line x1="450" y1="50" x2="450" y2="220" stroke="#cccccc" stroke-width="1" stroke-dasharray="4,4"/>
  <!-- Border -->
  <rect width="598" height="248" x="1" y="1" fill="none" stroke="#333333" stroke-width="1"/>
</svg>