home *** CD-ROM | disk | FTP | other *** search
-
- (* :Title: World Names *)
-
- (* :Author: John M. Novak *)
-
- (* :Summary: This package defines symbols for use with WorldPlot.m
- at the global level. The symbols are the names of
- countries and lists of countries. The defined lists are:
- World, NorthAmerica, Europe, SouthAmerica, Asia, Oceania, Africa *)
-
- (* :Context: WorldNames` *)
-
- (* :Package Version: 1.0 *)
-
- (* :History: V 1.0 by John M. Novak, Nov. 1990 *)
-
- (* :Keywords: nations, cartography *)
-
- (* :Source:
- Esselte Map Service AB (Sweden): The Concise EARTHBOOK World
- Atlas, Earthbooks Incorporated, 1990
- *)
-
- (* :Mathematica Version: 1.2 or 2.0 *)
-
- (* :Limitation: Does not name every country in the world, but only
- those for which there is data in the WorldData.m package. *)
-
- BeginPackage["Miscellaneous`WorldNames`"]
-
- World::usage =
- "The symbol World contains the names of all the countries in the WorldData
- database.";
-
- World = {"Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica",
- "Argentina", "Australia", "Austria", "Bahrain", "Bangladesh", "Belgium",
- "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Botswana", "Brazil",
- "Brunei", "Bulgaria", "Burkina Faso", "Burma", "Burundi", "CAR", "Cabinda",
- "Cambodia", "Cameroon", "Canada", "Chad", "Chile", "China", "Colombia", "Congo",
- "Costa Rica", "Cuba", "Cyprus", "Czechoslovakia", "Denmark", "Djibouti",
- "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea",
- "Ethiopia", "Falkland Islands", "Fiji", "Finland", "France", "French Guiana",
- "Gabon", "Gambia", "Germany", "Ghana", "Gibraltar", "Greece", "Greenland",
- "Guatemala", "Guinea", "Guinea Bissau", "Guyana", "Haiti", "Honduras", "Hungary",
- "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy",
- "Ivory Coast", "Jamaica", "Japan", "Jordan", "Kenya", "Kuwait", "Laos", "Lebanon",
- "Liberia", "Libya", "Liechtenstein", "Luxembourg", "Madagascar", "Malawi",
- "Malaysia", "Mali", "Mauritania", "Mexico", "Monaco", "Mongolia", "Morocco",
- "Mozambique", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua",
- "Niger", "Nigeria", "North Korea", "Norway", "Oman", "Pakistan", "Panama",
- "Papua-New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal",
- "Puerto Rico", "Qatar", "Romania", "Rwanda", "San Marino", "Saudi Arabia",
- "Senegal", "Sierra Leone", "Singapore", "Somalia", "South Africa", "Lesotho",
- "South Korea", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden",
- "Switzerland", "Syria", "Taiwan", "Tanzania", "Thailand", "Togo", "Tunisia",
- "Turkey", "UAE", "United Kingdom", "USA", "USSR", "Uganda", "Uruguay", "Venezuela",
- "Vietnam", "Western Sahara", "Yemen AR", "Yemen PR", "Yugoslavia", "Zaire",
- "Zambia", "Zimbabwe"};
-
- (* Note: Lesotho is out of alphabetical
- order so it can be plotted on top of South
- Africa. (otherwise, when a polygon, S.A. covers Lesotho) *)
-
- Europe::usage =
- "Europe contains the names of all the countries of Europe defined in the
- WorldData database; includes the USSR.";
-
- Europe = {"Portugal", "Spain", "France", "Italy", "Switzerland", "Austria",
- "Germany", "Luxembourg", "Liechtenstein", "Andorra", "Belgium", "Netherlands",
- "Denmark", "Poland", "Czechoslovakia", "Hungary", "Albania",
- "Yugoslavia", "Romania", "Bulgaria", "Greece", "United Kingdom", "Turkey", "Cyprus",
- "Ireland", "Iceland", "Norway", "Sweden", "Finland", "Monaco", "Gibraltar", "San Marino", "USSR"};
-
- SouthAmerica::usage =
- "SouthAmerica contains the names of the countries of South America defined in
- the WorldData database.";
-
- SouthAmerica = {"Colombia", "Venezuela", "Guyana", "Suriname",
- "French Guiana", "Ecuador", "Peru", "Bolivia", "Chile", "Paraguay",
- "Argentina", "Uruguay", "Brazil"};
-
- NorthAmerica::usage =
- "NorthAmerica contains the names of the countries of North and Central
- America defined in the WordData database.";
-
- NorthAmerica = {"USA", "Canada", "Mexico", "Greenland", "Bermuda", "Cuba", "Jamaica", "Haiti",
- "Belize", "Dominican Republic", "El Salvador", "Guatemala", "Honduras", "Nicaragua",
- "Costa Rica", "Panama", "Puerto Rico"};
-
- Oceania::usage =
- "Oceania contains the names of the countries of the South Pacific defined in
- the WorldData database.";
-
- Oceania = {"Indonesia", "Papua-New Guinea", "Fiji", "Australia", "New Zealand"};
-
- Asia::usage =
- "Asia contains the names of the countries of Asia defined in the WorldData
- database; including the Middle East and the USSR.";
-
- Asia = {"USSR", "China", "Mongolia", "Afghanistan", "Pakistan", "India",
- "Nepal", "Bhutan", "Sri Lanka", "Bangladesh", "Burma", "Thailand",
- "Laos", "Cambodia", "Vietnam", "North Korea", "South Korea",
- "Japan", "Taiwan", "Turkey", "Lebanon", "Syria", "Iraq", "Iran", "Israel", "Jordan", "Kuwait",
- "Saudi Arabia", "Bahrain", "Qatar", "UAE", "Yemen AR", "Yemen PR", "Oman", "Philippines",
- "Malaysia", "Singapore", "Brunei", "Indonesia"};
-
- Africa::usage =
- "Africa contains the names of the countries of Africa defined in the WorldData
- database.";
-
- Africa = {"Algeria", "Angola", "Benin", "Botswana", "Burkina Faso", "Burundi", "Cameroon",
- "CAR", "Chad", "Congo", "Djibouti", "Egypt", "Equatorial Guinea", "Ethiopia", "Gabon", "Ghana",
- "Guinea", "Guinea Bissau", "Ivory Coast", "Kenya", "Liberia", "Libya",
- "Madagascar", "Malawi", "Mali", "Mauritania", "Morocco", "Mozambique", "Namibia", "Niger",
- "Nigeria", "South Africa", "Lesotho", "Rwanda", "Senegal", "Sierra Leone", "Somalia", "Sudan", "Swaziland",
- "Tanzania", "Gambia", "Togo", "Tunisia", "Uganda", "Western Sahara", "Zaire", "Zambia", "Zimbabwe"};
-
- MiddleEast::usage =
- "MiddleEast contains the names of the countries of the Middle East defined
- in the WorldData database.";
-
- MiddleEast = {"Egypt", "Israel", "Lebanon", "Syria", "Turkey", "Saudi Arabia", "Yemen AR", "Yemen PR",
- "Oman", "UAE", "Bahrain", "Kuwait", "Iraq", "Iran", "Jordan", "Qatar"};
-
- EndPackage[]
-