#!/bin/bash # Set service base path, change to your own service host SERVICEBASE="https://service.ncedc.org" # Set all service specific locations using the service base TIMESERIESWS="${SERVICEBASE}/fdsnws/dataselect/1" METADATAWS="${SERVICEBASE}/fdsnws/station/1" EVENTWS="${SERVICEBASE}/fdsnws/event/1" SACPZWS="${SERVICEBASE}/ncedcws/sacpz/1" RESPWS="${SERVICEBASE}/ncedcws/resp/1" export SERVICEBASE TIMESERIESWS METADATAWS EVENTWS SACPZWS RESPWS exec FetchData "$@"