[Xastir] What about the Great Lakes?
Tom Russo
russo at bogoflux.losalamos.nm.us
Sat Mar 20 11:43:42 EST 2004
On Sat, Mar 20, 2004 at 01:57:48AM -0700, a Mr. Richard Feyler of Fort Lee, New Jersey <russo at bogoflux.losalamos.nm.us> writes 'Dear Rosanne Rosannadanna':
> Have you thought about downloading the "Streams and Waterbodies"
> shapefile from National Atlas? That would at least have area features
> for the lakes and then some. With dbfawk you could select only the
> water features you actually cared about and fill them with blue,
> without displaying every single stream and river in the country. (I
> think --- the file is huge and it's still downloading, so I haven't
> played with it yet)
With the "Streams and waterbodies" shapefile from national atlas and this
dbfawk file, you'll get all the lakes, reserviors and bays in the country
a nice shade of cyan.
I only played with the "hydrogp020" shapefile in the national atlas
set, there's another called hydrogl020 that has linear features instead
They're both huge.
I saved the dbfawk file as hydrogp020.dbfawk in the same directory as the
shape file, so it's specific to the one map layer.
-------
# $Id$
# This file is used for the hydrology shapefile from National Atlas
BEGIN {
dbfinfo="AREA:PERIMETER:HYDROGM020:FEATURE:NAME:STATE:STATE_FIPS";
dbffields="FEATURE:NAME"}
BEGIN_RECORD {key=""; lanes=1; color=8; fill_color=3; name=""; filled=0; pattern=0; display_level=262144; label_level=4096; symbol=""; font_size=2}
# Only fill lakes, Reservoirs and "Bays, Estuaries or Oceans", not
# "swamps or marshes" --- they tend to make all of CONUS cyan
/^FEATURE.*=(L.*)/ {filled=1;}
/^FEATURE=(B.*)/ {filled=1; }
/^FEATURE=(R.*)/ {filled=1; }
/^NAME=(.*)$/ {name="$1 ";}
--------
--
Tom Russo KM5VY SAR502 DM64ux http://www.swcp.com/~russo/
Tijeras, NM QRPL#1592 K2#398 SOC#236 AHTB#1 http://www.qsl.net/~km5vy/
"It is inhumane in my opinion to force people who have a genuine
medical need for coffee to wait in line behind people who apparently
view it as some kind of recreational activity." -- Dave Barry
More information about the Xastir
mailing list