Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit beb4d4c

Browse files
author
Tom Pollard
committed
Updated links to METAR resources in the README
1 parent 6a441db commit beb4d4c

File tree

1 file changed

+46
-16
lines changed

1 file changed

+46
-16
lines changed

README

Lines changed: 46 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,64 @@
22
The metar library
33
========================================================================
44

5-
Metar is a python package for interpreting METAR and SPECI coded
5+
Python-metar is a python package for interpreting METAR and SPECI coded
66
weather reports.
77

88
METAR and SPECI are coded aviation weather reports. The official
99
coding schemes are specified in the World Meteorological Organization
1010
(WMO) Manual on Codes, vol I.1, Part A (WMO-306 I.i.A). US conventions
1111
for METAR/SPECI reports vary in a number of ways from the international
1212
standard, and are described in chapter 12 of the Federal Meteorological
13-
Handbook No.1. (FMH-1 1995), issued by NOAA. See <http://metar.noaa.gov/>
14-
15-
This module handles all main-body groups in reports that follow the
16-
WMO spec or the US conventions, except for trend groups. The most
17-
useful remark groups defined in the US spec are parsed, as well,
18-
such as the cumulative precipitation, min/max temperature, peak
19-
wind and sea-level pressure groups. No other regional conventions
13+
Handbook No.1. (FMH-1 1995), issued by the National Oceanic and
14+
Atmospheric Administration (NOAA). General information about the
15+
use and history of the METAR standard can be found at
16+
17+
http://www.ncdc.noaa.gov/oa/wdc/metar/
18+
19+
This module extracts the data recorded in the main-body groups of
20+
reports that follow the WMO spec or the US conventions, except for
21+
the runway state and trend groups, which are parsed but ignored.
22+
The most useful remark groups defined in the US spec are parsed,
23+
as well, such as the cumulative precipitation, min/max temperature,
24+
peak wind and sea-level pressure groups. No other regional conventions
2025
are formally supported, but a large number of variant formats found
21-
in international reports are accepted."""
26+
in international reports are accepted.
2227

28+
Current METAR reports
29+
---------------------
2330
Current and historical METAR data can be obtained from various places.
2431
The current METAR report for a given airport is available at the URL
25-
<http://weather.noaa.gov/pub/data/observations/metar/stations/<station>.TXT>
32+
33+
http://weather.noaa.gov/pub/data/observations/metar/stations/<station>.TXT
34+
2635
where <station> is the four-letter ICAO airport station code. The
2736
accompanying script get_report.py will download and decode the
2837
current report for any specified station.
2938

3039
The METAR reports for all stations (worldwide) for any "cycle" (i.e., hour)
3140
in the last 24 hours are available in a single file at the URL
32-
<http://weather.noaa.gov/pub/data/observations/metar/cycles/<cycle>Z.TXT>
41+
42+
http://weather.noaa.gov/pub/data/observations/metar/cycles/<cycle>Z.TXT
43+
3344
where <cycle> is a 2-digit cycle number (e.g., "00", "05" or "23").
3445

35-
The WMO and US code specifications (and a file listing the ICAO
36-
station codes) are available from my website at
37-
http://homepage.mac.com/wtpollard/Software/FileSharing4.html.
46+
METAR specifications
47+
--------------------
48+
The Federal Meteorological Handbook No.1. (FMH-1 1995), which
49+
describes the U.S. standards, is available online at
50+
51+
http://www.ofcm.gov/fmh-1/fmh1.htm
52+
53+
The World Meteorological Organization (WMO) Manual on Codes, vol I.1,
54+
Part A (WMO-306 I.i.A) can be downloaded from site I use to distribute
55+
this package,
56+
57+
http://homepage.mac.com/wtpollard/Software/FileSharing4.html.
58+
3859

3960
Tom Pollard
4061
41-
January 25, 2005
62+
May 2, 2009
4263

4364
------------------------------------------------------------------------
4465
Installation
@@ -57,6 +78,15 @@ There are a couple of sample scripts, described briefly below.
5778
There's no real documentation to speak of, yet, but feel free to
5879
contact me with any questions you might have about how to use this package.
5980

81+
Current sources
82+
---------------
83+
You can always obtain the most recent version of this package using git, via
84+
85+
git clone git://github.com/tomp/python-metar.git
86+
87+
This is a public copy of the code repository I use for development.
88+
Thanks to Toby White for making me aware of github.
89+
6090
------------------------------------------------------------------------
6191
Contents
6292
------------------------------------------------------------------------
@@ -131,7 +161,7 @@ LICENSE
131161
------------------------------------------------------------------------
132162
The metar library is
133163

134-
Copyright (c) 2004, Tom Pollard
164+
Copyright (c) 2004-2009, Tom Pollard
135165
All rights reserved.
136166

137167
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)