Imported from archive.
[weather.git] / FAQ
1 FREQUENTLY ASKED QUESTIONS ABOUT THE WEATHER UTILITY
2
3 Copyright (c) 2006 Jeremy Stanley <fungi@yuggoth.org>, all rights reserved.
4 Licensed per terms in the LICENSE file distributed with this software.
5
6
7 1. Can I help?
8  
9 Sure! Bug reports and feature suggestions are always welcome, but
10 fixes and patches are of course preferred. Contact
11 fungi@yuggoth.org if desired, but please read this FAQ and the
12 included manuals for weather(1) and weatherrc(5) before asking
13 questions that might be answered therein. One big way anyone can
14 help is to provide me with some additional mappings of METAR
15 station ID, city name and state abbreviation for inclusion in the
16 default /etc/weatherrc file.
17
18
19 2. How do I figure out my local METAR station ID?
20
21 The list of stations is found at
22 http://weather.noaa.gov/data/nsd_cccc.gz (it's thousands of lines
23 long, so I recommend keyword searching in your browser or using
24 grep(1) to find what you're looking for).
25
26
27 3. How do I figure out my local city name and state abbreviation?
28
29 The forecasts can be located starting from
30 http://weather.noaa.gov/pub/data/forecasts/city/ (choose the
31 state abbreviation to get to a list of cities in that state).
32
33
34 4. I live outside the USA--can this be made to work for me
35 anyway?
36
37 If you have any recommendations for similar forecast data in
38 other countries, I will be happy to try and find a way to
39 integrate it into the weather utility, but I suspect that some
40 serious modification would be necessary given that the data is
41 likely to be published in a non-English language, requiring some
42 additional input from speakers of that language for how to handle
43 filtering and formatting of the text.
44
45
46 5. I get a warning when using apt-get to install on Debian Etch
47 or later...
48
49 If you're getting a warning from apt-get update like:
50
51    W: GPG error: http://fungi.yuggoth.org ./ Release: The
52       following signatures couldn't be verified because the
53       public key is not available: NO_PUBKEY 29ABF7441FB84657
54
55 ...it means my PGP key is not recognized by apt-get. Since this
56 isn't an official Debian package repository, the Release.gpg
57 file can't be signed by a key on the default keyring. To add my
58 personal key to the list of trusted package repository Release
59 signers, run (as root):
60
61    finger fungi@yuggoth.org | apt-key add -
62
63 ...or if you want to be a little paranoid, retrieve it from a
64 public keyserver instead (all one line):
65
66    wget -O- "http://subkeys.pgp.net:11371/pks
67    /lookup?op=get&search=0x29ABF7441FB84657" | apt-key add -
68
69 Though if you're really, truly paranoid, you'll re-write the
70 program from scratch anyway, right?
71