airport-data.php 1 location
|
@@ 93-95 (lines=3) @@
|
| 90 |
|
} |
| 91 |
|
print '<br/>'; |
| 92 |
|
} |
| 93 |
|
if (isset($metar_parse['visibility'])) { |
| 94 |
|
print _("Visibility:").' '.$metar_parse['visibility'].' m'."<br/>"; |
| 95 |
|
} |
| 96 |
|
if (isset($metar_parse['weather'])) { |
| 97 |
|
print _("Weather:").' '.$metar_parse['weather']."<br/>"; |
| 98 |
|
} |
airport-detailed.php 1 location
|
@@ 143-145 (lines=3) @@
|
| 140 |
|
} |
| 141 |
|
print ' - '; |
| 142 |
|
} |
| 143 |
|
if (isset($metar_parse['visibility'])) { |
| 144 |
|
print _("Visibility:").' '.$metar_parse['visibility'].' m'." - "; |
| 145 |
|
} |
| 146 |
|
if (isset($metar_parse['weather'])) { |
| 147 |
|
print _("Weather:").' '.$metar_parse['weather']." - "; |
| 148 |
|
} |
tools-metar.php 1 location
|
@@ 53-55 (lines=3) @@
|
| 50 |
|
} |
| 51 |
|
print ' '; |
| 52 |
|
} |
| 53 |
|
if (isset($metar_parse['visibility'])) { |
| 54 |
|
print '<b>'._("Visibility:").'</b> '.$metar_parse['visibility'].' m'." "; |
| 55 |
|
} |
| 56 |
|
if (isset($metar_parse['weather'])) { |
| 57 |
|
print '<b>'._("Weather:").'</b> '.$metar_parse['weather']." "; |
| 58 |
|
} |