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
68
69
70
71
72
73
<?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 — Obstacles</text>
  <!-- ===== A) Single lighted obstacle ===== -->
  <g transform="translate(75, 125)">
    <!-- Filled circle (base) -->
    <circle cx="0" cy="20" r="8" fill="black"/>
    <!-- Light rays (star) -->
    <line x1="0" y1="-5" x2="0" y2="-18" stroke="black" stroke-width="1.5"/>
    <line x1="9" y1="0" x2="18" y2="-6" stroke="black" stroke-width="1.5"/>
    <line x1="-9" y1="0" x2="-18" y2="-6" stroke="black" stroke-width="1.5"/>
    <line x1="6" y1="-9" x2="13" y2="-18" stroke="black" stroke-width="1.5"/>
    <line x1="-6" y1="-9" x2="-13" y2="-18" stroke="black" stroke-width="1.5"/>
    <line x1="9" y1="-5" x2="18" y2="-10" stroke="black" stroke-width="1.5"/>
    <line x1="-9" y1="-5" x2="-18" y2="-10" stroke="black" stroke-width="1.5"/>
    <!-- Label -->
    <text x="0" y="48" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">A)</text>
    <text x="0" y="63" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Single lighted</text>
    <text x="0" y="76" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">obstacle</text>
  </g>
  <!-- ===== B) Single unlighted obstacle ===== -->
  <g transform="translate(225, 125)">
    <!-- Filled circle (base) -->
    <circle cx="0" cy="20" r="8" fill="black"/>
    <!-- Label -->
    <text x="0" y="48" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">B)</text>
    <text x="0" y="63" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Single unlighted</text>
    <text x="0" y="76" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">obstacle</text>
  </g>
  <!-- ===== C) Group of lighted obstacles ===== -->
  <g transform="translate(375, 125)">
    <!-- Two filled circles side by side -->
    <circle cx="-12" cy="20" r="7" fill="black"/>
    <circle cx="12" cy="20" r="7" fill="black"/>
    <!-- Light rays above center -->
    <line x1="0" y1="-2" x2="0" y2="-16" stroke="black" stroke-width="1.5"/>
    <line x1="9" y1="2" x2="18" y2="-4" stroke="black" stroke-width="1.5"/>
    <line x1="-9" y1="2" x2="-18" y2="-4" stroke="black" stroke-width="1.5"/>
    <line x1="6" y1="-7" x2="13" y2="-16" stroke="black" stroke-width="1.5"/>
    <line x1="-6" y1="-7" x2="-13" y2="-16" stroke="black" stroke-width="1.5"/>
    <line x1="9" y1="-3" x2="18" y2="-8" stroke="black" stroke-width="1.5"/>
    <line x1="-9" y1="-3" x2="-18" y2="-8" stroke="black" stroke-width="1.5"/>
    <!-- Label -->
    <text x="0" y="48" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">C)</text>
    <text x="0" y="63" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Group of lighted</text>
    <text x="0" y="76" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">obstacles</text>
  </g>
  <!-- ===== D) Group of unlighted obstacles ===== -->
  <g transform="translate(525, 125)">
    <!-- Two filled circles side by side -->
    <circle cx="-12" cy="20" r="7" fill="black"/>
    <circle cx="12" cy="20" r="7" fill="black"/>
    <!-- Label -->
    <text x="0" y="48" font-family="Arial, sans-serif" font-size="13" font-weight="bold" text-anchor="middle" fill="black">D)</text>
    <text x="0" y="63" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">Group of unlighted</text>
    <text x="0" y="76" font-family="Arial, sans-serif" font-size="11" text-anchor="middle" fill="black">obstacles</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>