1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/bin/sh
#
# Script to retrieve GNIS files by state.
#
# Written 20041205 Dan Brown N8YSZ
#
# Copyright (C) 2000-2023 The Xastir Group
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
# Look at the README for more information on the program.
#
GNIS_SITE=https://geonames.usgs.gov/docs/stategaz
SUFFIX=_Features
prefix=@prefix@
if [ $# -lt 1 ]
then
printf "%s: error - Need at least one state to download\n" $0
printf "Usage: %s ST [ST]... \n" $0
exit 1
fi
cd /tmp
while [ $1 ]
do
MYSTATE=`printf ${1} | tr a-z A-Z `
printf "Retrieving GNIS file for %s\n" ${MYSTATE}
rm -f ${MYSTATE}${SUFFIX}.zip ${MYSTATE}${SUFFIX}_20*.txt
if (wget ${GNIS_SITE}/${MYSTATE}${SUFFIX}.zip)
then
if ( [ -f ${MYSTATE}${SUFFIX}.zip ] )
then
unzip ${MYSTATE}${SUFFIX}.zip
GNIS_FILE=`ls -t ${MYSTATE}${SUFFIX}*.txt | head -1`
else
GNIS_FILE="badfiledownload"
fi
else
SUFFIX=_Features_20191101
rm -f ${MYSTATE}${SUFFIX}.zip ${MYSTATE}${SUFFIX}.txt
wget ${GNIS_SITE}/${MYSTATE}${SUFFIX}.txt
GNIS_FILE=${MYSTATE}${SUFFIX}.txt
fi
if ( [ -f ${GNIS_FILE} ] )
then
printf "File successfully downloaded. Moving to ${prefix}/share/xastir/GNIS\n"
sudo mv ${GNIS_FILE} ${prefix}/share/xastir/GNIS/${MYSTATE}.gnis
if [ ${MYSTATE} = "AK" -o ${MYSTATE} = "HI" ]; then
sudo recode utf16..utf8 ${prefix}/share/xastir/GNIS/${MYSTATE}.gnis
fi
else
printf "File for %s not successfully downloaded.\n" ${MYSTATE}
fi
shift
done
|