#!/bin/sh
#
# Script to retrieve GNIS files by state. 
#
# Written 20041205 Dan Brown N8YSZ
#
# Copyright (C) 2000-2019 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=/usr/local

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 


