# $File: //member/autrijus/Geography-Country-Utils/README $ $Author: autrijus $ # $Revision: #1 $ $Change: 4087 $ $DateTime: 2003/02/05 04:03:47 $ This is the README file for Geography::Country::Utils, a collection of modules dealing with country-specific information handling. * Installation Geography::Country::Utils uses the standard perl module install process: cpansign -v # see SIGNATURE for details perl Makefile.PL make make test make install * Sample usage use Geography::Country::Utils qw(Name iso2fipx); # To convert FIPS code to country name (e.g., IS => Israel) $name = Name($code); # To convert ISO to FIPS (e.g., IS => IC, IL => IS) # (might fail with several third world countries) $fips = iso2fipx($code); * Copyright Copyright 2001, 2002 by Ariel Brosh. Copyright 2003 by Autrijus Tang . All rights reserved. You can redistribute and/or modify this bundle under the same terms as Perl itself. See . # Local variables: # c-indentation-style: bsd # c-basic-offset: 4 # indent-tabs-mode: nil # End: # vim: expandtab shiftwidth=4: