scuffed-code/icu4c/source/tools/gentz
Helena Chapman 3aaa52af8d ICU-161 updated the copyright notices.
X-SVN-Rev: 596
2000-01-15 02:00:06 +00:00
..
gentz.cpp ICU-12 all public include files are now in unicode dir, all private icu_ functions renamed to uprv_ 1999-12-28 23:57:50 +00:00
gentz.dsp ICU-65 add i18n to include path for tzdat.h 1999-12-02 21:38:00 +00:00
Makefile.in ICU-65 update for tz.alias and new gentz usage 1999-12-05 06:37:52 +00:00
readme.txt ICU-161 updated the copyright notices. 2000-01-15 02:00:06 +00:00
tz.alias ICU-65 alias table for backward compatibility 1999-12-05 06:08:12 +00:00
tz.bat ICU-65 Move time zone data to icudata 1999-11-30 23:05:49 +00:00
tz.default ICU-65 improve default zone support 1999-12-09 06:29:40 +00:00
tz.pl ICU-65 add html output; clean up offset index code 1999-12-16 23:52:31 +00:00
tz.txt ICU-65 improve default zone support 1999-12-09 06:29:40 +00:00
tzparse.pm ICU-65 update gentz for new binary format and alias table; make pm file names 8.3 1999-12-05 05:55:28 +00:00
tzutil.pm ICU-65 update gentz for new binary format and alias table; make pm file names 8.3 1999-12-05 05:55:28 +00:00

Copyright (C) 1999-2000, International Business Machines Corporation 
and others.  All Rights Reserved.

Readme file for ICU time zone data (source/tools/gentz)


RAW DATA
--------
The time zone data in ICU is taken from the UNIX data files at
ftp://elsie.nci.nih.gov/pub/tzdata<year>.  The other input to the
process is an alias table, described below.


BUILD PROCESS
-------------
Two tools are used to process the data into a format suitable for ICU:

   tz.pl    directory of raw data files + tz.alias -> tz.txt
   gentz    tz.txt -> tz.dat (memory mappable binary file)

After gentz is run, standard ICU data tools are used to incorporate
tz.dat into the icudata module.

In order to incorporate the raw data from that source into ICU, take
the following steps.

1. Download the archive of current zone data.  This should be a file
   named something like tzdata1999j.tar.gz.  Use the URL listed above.

2. Unpack the archive into a directory, retaining the name of the
   archive.  For example, unpack tzdata1999j.tar.gz into tzdata1999j/.
   Place this directory anywhere; one option is to place it within
   source/tools/gentz.

3. Run the perl script tz.pl, passing it the directory location as a
   command-line argument.  On Windows system use the batch file
   tz.bat.  The output of this step is the intermediate text file
   source/tools/gentz/tz.txt.

4. Run source/tools/makedata on Windows.  On UNIX systems the
   equivalent build steps are performed by 'make' and 'make install'.

The tz.txt file is typically checked into CVS, whereas the raw data
files are not, since they are readily available from the URL listed
above.


ALIAS TABLE
-----------
For backward compatibility, we define several three-letter IDs that
have been used since early ICU and correspond to IDs used in old JDKs.
These IDs are listed in tz.alias.  The tz.pl script processes this
alias table and issues errors if there are problems.


IDS
---
All *system* zone IDs must consist only of characters in the invariant
set.  See utypes.h for an explanation of what this means.  If an ID is
encountered that contains a non-invariant character, tz.pl complains.
Non-system zones may use non-invariant characters.


Etc/GMT...
----------
Users may be confused by the fact that various zones with names of the
form Etc/GMT+n appear to have an offset of the wrong sign.  For
example, Etc/GMT+8 is 8 hours *behind* GMT; that is, it corresponds to
what one typically sees displayed as "GMT-8:00".  The reason for this
inversion is explained in the UNIX zone data file "etcetera".
Briefly, this is done intentionally in order to comply with
POSIX-style signedness.  In ICU we reproduce the UNIX zone behavior
faithfully, including this confusing aspect.


Alan Liu 1999