No reference to yaz/tab in manual or zebra.cfg's.
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 30 Oct 2002 13:59:42 +0000 (13:59 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 30 Oct 2002 13:59:42 +0000 (13:59 +0000)
Gils example moved to examples/gils. test/gils is kept testing.
Sub directory examples now part of tar-ball after make dist.

60 files changed:
CHANGELOG
Makefile.am
configure.in
doc/examples.xml
doc/quickstart.xml
examples/Makefile.am [new file with mode: 0644]
examples/dinosauricon/Makefile
examples/dinosauricon/Makefile.am [new file with mode: 0644]
examples/dinosauricon/zebra.cfg
examples/gils/Makefile.am [new file with mode: 0644]
examples/gils/records/esdd0006.grs [new file with mode: 0644]
examples/gils/records/esdd0007.grs [new file with mode: 0644]
examples/gils/records/esdd0008.grs [new file with mode: 0644]
examples/gils/records/esdd0030.grs [new file with mode: 0644]
examples/gils/records/esdd0031.grs [new file with mode: 0644]
examples/gils/records/esdd0032.grs [new file with mode: 0644]
examples/gils/records/esdd0033.grs [new file with mode: 0644]
examples/gils/records/esdd0034.grs [new file with mode: 0644]
examples/gils/records/esdd0035.grs [new file with mode: 0644]
examples/gils/records/esdd0036.grs [new file with mode: 0644]
examples/gils/records/esdd0037.grs [new file with mode: 0644]
examples/gils/records/esdd0038.grs [new file with mode: 0644]
examples/gils/records/esdd0039.grs [new file with mode: 0644]
examples/gils/records/esdd0040.grs [new file with mode: 0644]
examples/gils/records/esdd0041.grs [new file with mode: 0644]
examples/gils/records/esdd0042.grs [new file with mode: 0644]
examples/gils/records/esdd0044.grs [new file with mode: 0644]
examples/gils/records/esdd0045.grs [new file with mode: 0644]
examples/gils/records/esdd0046.grs [new file with mode: 0644]
examples/gils/records/esdd0047.grs [new file with mode: 0644]
examples/gils/records/esdd0048.grs [new file with mode: 0644]
examples/gils/records/esdd0049.grs [new file with mode: 0644]
examples/gils/records/esdd0050.grs [new file with mode: 0644]
examples/gils/records/esdd0051.grs [new file with mode: 0644]
examples/gils/records/esdd0052.grs [new file with mode: 0644]
examples/gils/records/esdd0053.grs [new file with mode: 0644]
examples/gils/records/esdd0054.grs [new file with mode: 0644]
examples/gils/records/esdd0055.grs [new file with mode: 0644]
examples/gils/records/esdd0056.grs [new file with mode: 0644]
examples/gils/records/esdd0057.grs [new file with mode: 0644]
examples/gils/records/esdd0058.grs [new file with mode: 0644]
examples/gils/records/esdd0059.grs [new file with mode: 0644]
examples/gils/records/esdd0062.grs [new file with mode: 0644]
examples/gils/records/esdd0063.grs [new file with mode: 0644]
examples/gils/records/esdd0064.grs [new file with mode: 0644]
examples/gils/records/esdd0065.grs [new file with mode: 0644]
examples/gils/records/esdd0066.grs [new file with mode: 0644]
examples/gils/records/esdd0067.grs [new file with mode: 0644]
examples/gils/records/esdd0070.grs [new file with mode: 0644]
examples/gils/records/esdd0071.grs [new file with mode: 0644]
examples/gils/records/esdd0072.grs [new file with mode: 0644]
examples/gils/records/esdd0073.grs [new file with mode: 0644]
examples/gils/records/esdd0074.grs [new file with mode: 0644]
examples/gils/records/esdd0075.grs [new file with mode: 0644]
examples/gils/records/esdd0076.grs [new file with mode: 0644]
examples/gils/records/esdd0077.grs [new file with mode: 0644]
examples/gils/records/esdd0078.grs [new file with mode: 0644]
examples/gils/records/esdd0079.grs [new file with mode: 0644]
test/gils/Makefile.am
test/gils/zebra.cfg [deleted file]

index 23a6903..7e8754b 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
 
+Zebra Examples in examples . Zebra tests in test.
+
 Bug fix: sort index was not properly modified on 
 record updates/deletes.
 
index 3e772ba..a99e513 100644 (file)
@@ -1,11 +1,11 @@
-## $Id: Makefile.am,v 1.8 2002-10-22 12:51:08 adam Exp $
+## $Id: Makefile.am,v 1.9 2002-10-30 13:59:42 adam Exp $
 
 AUTOMAKE_OPTIONS=foreign
 
 EXTRA_DIST= README CHANGELOG 
 
 SUBDIRS=util bfile dfa dict isams isamb isamc isam rset data1 \
- recctrl tab index test include doc
+ recctrl tab index test examples include doc
 
 SPEC_FILE=$(PACKAGE).spec
 
index 297d885..cc84bb5 100644 (file)
@@ -1,5 +1,5 @@
 dnl Zebra, Index Data Aps, 1995-2002
-dnl $Id: configure.in,v 1.51 2002-10-22 12:51:08 adam Exp $
+dnl $Id: configure.in,v 1.52 2002-10-30 13:59:42 adam Exp $
 dnl
 AC_INIT(include/zebraver.h)
 AM_INIT_AUTOMAKE(idzebra,1.3.3)
@@ -256,4 +256,5 @@ AC_OUTPUT([
   doc/zebraphp.dsl
   test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile
   test/dmoz/Makefile
+  examples/Makefile examples/gils/Makefile examples/dinosauricon/Makefile
 ])
index 4afdca0..4805c29 100644 (file)
@@ -1,5 +1,5 @@
 <chapter id="examples">
- <!-- $Id: examples.xml,v 1.13 2002-10-18 16:16:59 mike Exp $ -->
+ <!-- $Id: examples.xml,v 1.14 2002-10-30 13:59:42 adam Exp $ -->
  <title>Example Configurations</title>
 
  <sect1>
@@ -10,7 +10,7 @@
    driven by a master configuration file, which may refer to other
    subsidiary configuration files.  By default, they try to use
    <filename>zebra.cfg</filename> in the working directory as the
-   master file; but this can be changed using the <literal>-t</literal>
+   master file; but this can be changed using the <literal>-c</literal>
    option to specify an alternative master configuration file.
   </para>
   <para>
@@ -76,7 +76,7 @@
    minimal file that just tells <literal>zebraidx</literal> where to
    find the default indexing rules, and how to parse the records:
    <screen>
-    profilePath: .:../../tab:../../../yaz/tab
+    profilePath: .:../../tab
     recordType: grs.sgml
    </screen>
   </para>
index b5478ea..cb1f7a4 100644 (file)
@@ -1,5 +1,5 @@
 <chapter id="quick-start">
- <!-- $Id: quickstart.xml,v 1.5 2002-10-16 20:33:31 mike Exp $ -->
+ <!-- $Id: quickstart.xml,v 1.6 2002-10-30 13:59:42 adam Exp $ -->
  <title>Quick Start </title>
  
  <!--
  <para>
   In this section, we will test the system by indexing a small set of sample
   GILS records that are included with the software distribution. Go to the
-  <literal>test/gils</literal> subdirectory of the distribution archive.
+  <literal>examples/gils</literal> subdirectory of the distribution archive.
   There you will find a configuration
   file named <literal>zebra.cfg</literal> with the following contents:
   
   <screen>
    # Where the schema files, attribute files, etc are located.
-   profilePath: .:../../tab:../../../yaz/tab:/usr/local/share/yaz/tab:/usr/share/yaz/tab
+   profilePath: .:../../tab
 
    # Files that describe the attribute sets supported.
    attset: bib1.att
    isam: c
   </screen>
  </para>
+
+ <!--  No longer necessary
  <para>
   If necessary, edit the file and set <literal>profilePath</literal> to the path of the
   YAZ profile tables (sub directory <literal>tab</literal> of the YAZ
   distribution archive).
  </para>
+ -->
  
  <para>
   The 48 test records are located in the sub directory
diff --git a/examples/Makefile.am b/examples/Makefile.am
new file mode 100644 (file)
index 0000000..a377353
--- /dev/null
@@ -0,0 +1,3 @@
+
+SUBDIRS=gils dinosauricon
+
index 70f951a..0e1eeaf 100644 (file)
@@ -1,7 +1,187 @@
-OBJECECTFILES = *.mf *.LCK zebrasrv.pid zebraidx.time
+# Generated automatically from Makefile.in by configure.
+# Makefile.in generated automatically by automake 1.4-p4 from Makefile.am
 
-isamcA-0.mf: records/genera.xml
-       ../../index/zebraidx update records
+# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-clean:
-       rm -f $(OBJECECTFILES)
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+
+SHELL = /bin/sh
+
+srcdir = .
+top_srcdir = ../..
+prefix = /usr/local
+exec_prefix = ${prefix}
+
+bindir = ${exec_prefix}/bin
+sbindir = ${exec_prefix}/sbin
+libexecdir = ${exec_prefix}/libexec
+datadir = ${prefix}/share
+sysconfdir = ${prefix}/etc
+sharedstatedir = ${prefix}/com
+localstatedir = ${prefix}/var
+libdir = ${exec_prefix}/lib
+infodir = ${prefix}/info
+mandir = ${prefix}/man
+includedir = ${prefix}/include
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/idzebra
+pkglibdir = $(libdir)/idzebra
+pkgincludedir = $(includedir)/idzebra
+
+top_builddir = ../..
+
+ACLOCAL = aclocal
+AUTOCONF = autoconf
+AUTOMAKE = automake
+AUTOHEADER = autoheader
+
+INSTALL = /usr/bin/install -c
+INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = ${INSTALL} -m 644
+INSTALL_SCRIPT = ${INSTALL_PROGRAM}
+transform = s,x,x,
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+CC = gcc
+CPP = gcc -E
+DSSSL_DIR = /usr/share/sgml/docbook/stylesheet/dsssl/modular
+DTD_DIR = /usr/share/sgml/docbook/dtd/xml/4.1.2
+MAKEINFO = makeinfo
+PACKAGE = idzebra
+RANLIB = ranlib
+TCL_INCLUDE = -I/usr/include/tcl8.3
+TCL_LIB = -L/usr/lib -ltcl8.3${TCL_DBGX} -ldl  -lieee -lm
+VERSION = 1.3.3
+YAZINC = -I/home/adam/proj/yaz/include -DYAZ_POSIX_THREADS=1 -D_REENTRANT
+YAZLALIB = /home/adam/proj/yaz/lib/libyazthread.la /home/adam/proj/yaz/lib/libyaz.la -lpthread
+YAZLIB = -L/home/adam/proj/yaz/lib/.libs -lyazthread -lyaz -lpthread
+YAZVERSION = 1.9.1
+yazconfig = ./../yaz/yaz-config
+
+EXTRA_DIST = zebra.cfg 
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_CLEAN_FILES = 
+DIST_COMMON =  README Makefile.am Makefile.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+TAR = tar
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
+       cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/dinosauricon/Makefile
+
+Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
+       cd $(top_builddir) \
+         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+tags: TAGS
+TAGS:
+
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+
+subdir = examples/dinosauricon
+
+distdir: $(DISTFILES)
+       here=`cd $(top_builddir) && pwd`; \
+       top_distdir=`cd $(top_distdir) && pwd`; \
+       distdir=`cd $(distdir) && pwd`; \
+       cd $(top_srcdir) \
+         && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu examples/dinosauricon/Makefile
+       @for file in $(DISTFILES); do \
+         d=$(srcdir); \
+         if test -d $$d/$$file; then \
+           cp -pr $$d/$$file $(distdir)/$$file; \
+         else \
+           test -f $(distdir)/$$file \
+           || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+           || cp -p $$d/$$file $(distdir)/$$file || :; \
+         fi; \
+       done
+       $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-hook
+info-am:
+info: info-am
+dvi-am:
+dvi: dvi-am
+check-am: all-am
+check: check-am
+installcheck-am:
+installcheck: installcheck-am
+install-exec-am:
+install-exec: install-exec-am
+
+install-data-am:
+install-data: install-data-am
+
+install-am: all-am
+       @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-am
+uninstall-am:
+uninstall: uninstall-am
+all-am: Makefile
+all-redirect: all-am
+install-strip:
+       $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs:
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+       -rm -f Makefile $(CONFIG_CLEAN_FILES)
+       -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am:  mostlyclean-generic
+
+mostlyclean: mostlyclean-am
+
+clean-am:  clean-generic mostlyclean-am
+
+clean: clean-am
+
+distclean-am:  distclean-generic clean-am
+
+distclean: distclean-am
+
+maintainer-clean-am:  maintainer-clean-generic distclean-am
+       @echo "This command is intended for maintainers to use;"
+       @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-am
+
+.PHONY: tags distdir info-am info dvi-am dvi check check-am \
+installcheck-am installcheck install-exec-am install-exec \
+install-data-am install-data install-am install uninstall-am uninstall \
+all-redirect all-am all installdirs mostlyclean-generic \
+distclean-generic clean-generic maintainer-clean-generic clean \
+mostlyclean distclean maintainer-clean
+
+
+dist-hook:
+       -mkdir $(distdir)/records
+       cp $(srcdir)/records/*.xml $(distdir)/records
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/examples/dinosauricon/Makefile.am b/examples/dinosauricon/Makefile.am
new file mode 100644 (file)
index 0000000..9acdaa1
--- /dev/null
@@ -0,0 +1,5 @@
+dist-hook:
+       -mkdir $(distdir)/records
+       cp $(srcdir)/records/*.xml $(distdir)/records
+
+EXTRA_DIST = zebra.cfg 
index 2b27df4..5ac4437 100644 (file)
@@ -1,5 +1,5 @@
-# $Header: /home/cvsroot/idis/examples/dinosauricon/Attic/zebra.cfg,v 1.6 2002-10-20 14:02:03 mike Exp $
+# $Header: /home/cvsroot/idis/examples/dinosauricon/Attic/zebra.cfg,v 1.7 2002-10-30 13:59:42 adam Exp $
 # Bare-bones master configuration file for Zebra
-profilePath: .:../../tab:../../../yaz/tab
+profilePath: .:../../tab
 recordType: grs.xml
 attset: bib1.att
diff --git a/examples/gils/Makefile.am b/examples/gils/Makefile.am
new file mode 100644 (file)
index 0000000..9da3bdd
--- /dev/null
@@ -0,0 +1,5 @@
+dist-hook:
+       -mkdir $(distdir)/records
+       cp $(srcdir)/records/*.grs $(distdir)/records
+
+EXTRA_DIST = zebra.cfg 
diff --git a/examples/gils/records/esdd0006.grs b/examples/gils/records/esdd0006.grs
new file mode 100644 (file)
index 0000000..6726dd2
--- /dev/null
@@ -0,0 +1,196 @@
+<gils>
+
+<Title>
+UTAH EARTHQUAKE EPICENTERS
+<Acronym>
+UUCCSEIS
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+APPALACHIAN VALLEY; EARTHQUAKE; EPICENTER; SEISMOLOGY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Five files of epicenter data arranged by date comprise this data set.  These 
+files are searchable by magnitude and longitude/latitude.  Hardcopy of listing 
+and plot of requested area available.  Epicenter location and date, magnitude, 
+and focal depth available.
+<Format>
+DIGITAL DATA SETS
+</Format>
+
+<Data-Category>
+TERRESTRIAL
+</Data-Category>
+
+<Comments>
+Data are supplied by the University of Utah Seismograph Station. The Utah 
+Geologcial and Mineral Survey (UGMS) is merely a clearinghouse of the data.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH EARTHQUAKE EPICENTERS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+BATCH
+</Access-Method>
+
+<Number-of-Records>
+8,700
+</Number-of-Records>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BILL CASE
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0006
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0007.grs b/examples/gils/records/esdd0007.grs
new file mode 100644 (file)
index 0000000..7f09356
--- /dev/null
@@ -0,0 +1,179 @@
+<gils>
+
+<Title>
+UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS
+<Acronym>
+UGMS
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+COAL; GAS; GEOLOGY; GREAT SALT LAKE; MINE; MINERAL; OIL; UTAH; WATER
+</Local-Subject-Index>
+
+<Abstract>
+Publications of the Utah Geological and Mineral Survey include reports of 
+investigation, special studies, bulletins, open-file reports, geologic map of 
+Utah, publications of geological societies, geologic and oil and mineral maps, 
+coal monographs, circulars, water resource bulletins, and reprints of articles.
+<Format>
+MAP SETS; REPORT SETS; CATALOGS/INDEXES; INDIVIDUAL MAPS; BIBLIOGRAPHIES
+</Format>
+
+<Data-Category>
+TERRESTRIAL
+</Data-Category>
+
+<Comments>
+Complete collection of publications is available in UGMS Library.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0007
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0008.grs b/examples/gils/records/esdd0008.grs
new file mode 100644 (file)
index 0000000..6b50c40
--- /dev/null
@@ -0,0 +1,180 @@
+<gils>
+
+<Title>
+UTAH GEOCHROMOMETRY
+<Acronym>
+UG
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+ARIZONA; COLORADO; GEOLOGY; IDAHO; IGNEOUS ROCK; NEVADA; RADIOMETRIC; ROCK; 
+UTAH; WYOMING
+</Local-Subject-Index>
+
+<Abstract>
+Utah radiometric dates, formations, investigations, constants, references 
+comprise this data set.  Searches by formation, age, location, constants, 
+methodology, and rock type will be possible.
+<Format>
+CATALOGS/INDEXES
+</Format>
+
+<Data-Category>
+TERRESTRIAL
+</Data-Category>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES.
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH GEOCHROMOMETRY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+UNDER DEVELOPMENT
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+GRANT WILLIS
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0008
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0030.grs b/examples/gils/records/esdd0030.grs
new file mode 100644 (file)
index 0000000..1a4071b
--- /dev/null
@@ -0,0 +1,173 @@
+<gils>
+
+<Title>
+UTAH OIL FIELD FILE
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+CRUDE OIL; GEOLOGY; MAP; OIL; OIL WELL; PETROLEUM; PETROLEUM WELL; RESERVOIR; 
+UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Complete Utah oil field data including geology, production, recovery methods, 
+structure maps, index map of wells within field, type section logs, operations, 
+field history, bibliography, references, reservoir data, and completion 
+practices comprise this data set.
+<Format>
+FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1900-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH OIL FIELD FILE
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+RAY KERNS
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0030
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0031.grs b/examples/gils/records/esdd0031.grs
new file mode 100644 (file)
index 0000000..b8a6622
--- /dev/null
@@ -0,0 +1,180 @@
+<gils>
+
+<Title>
+APPLIED GEOLOGY FILE
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGIC HAZARDS; GEOLOGY; GROUNDWATER; HAZARDOUS WASTE; HEALTH; WASTE
+</Local-Subject-Index>
+
+<Abstract>
+Reports and memorandums completed by the Site Investigation Section comprise 
+this data set.  Subjects include geotechnical appraisal of public facility 
+sites before and during construction and evaluations of hazardous waste 
+problems.
+<Format>
+FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES; US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1970-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+APPLIED GEOLOGY FILE
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Alphabetical and County Listings and 1984 Job Number
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+SHARON WAKEFIELD
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0031
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0032.grs b/examples/gils/records/esdd0032.grs
new file mode 100644 (file)
index 0000000..be24068
--- /dev/null
@@ -0,0 +1,201 @@
+<gils>
+
+<Title>
+UTAH CRIB FILE
+<Acronym>
+UTAH-CRIB
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+FUEL; GEOLOGY; LAND USE; MAP; METAL; MINERAL; NON-METAL; TOPOGRAPHY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+CRIB-UTAH is a data base covering mineral occurrences in Utah, including 
+metals, non-metals, and fuels.  Each mineral occurrence is plotted on 
+topographic maps and described in a six page report.
+<Format>
+MAP SETS; REPORT SETS
+</Format>
+
+<Comments>
+CRIB-UTAH is currently accessible through the BLM, USGS, and Utah Geological 
+and Mineral Survey.  Future modes of access to the system are uncertain due to 
+systems changes.  Not identical to USGS MRDS/CRIB files; other data available 
+in file folder at UGMS.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+UTM NORTHINGS AND EASTINGS; PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH CRIB FILE
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+REVELATION
+</DBMS>
+
+<Access-Method>
+INTERACTIVE AND BATCH
+</Access-Method>
+
+<Number-of-Records>
+8,000
+</Number-of-Records>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BRYCE TRIPP
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0032
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0033.grs b/examples/gils/records/esdd0033.grs
new file mode 100644 (file)
index 0000000..2d341da
--- /dev/null
@@ -0,0 +1,183 @@
+<gils>
+
+<Title>
+MINE MAP INDEX
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AREAL GEOLOGY; COAL; GEOLOGY; MAP; MINE; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Mine Map Index is an index of mine maps located in the UGMS energy section.  
+All maps are rescaled by hand to 1:24,000.  Maps show areal extent of mine and 
+coal seams.  Maps are used for production, control, and resource calculations.
+<Format>
+CATALOGS/INDEXES; INDIVIDUAL MAPS
+</Format>
+
+<Comments>
+Some drill hole information is confidential.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+MINE MAP INDEX
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+200
+</Number-of-Records>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+KEITH ALEX
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0033
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0034.grs b/examples/gils/records/esdd0034.grs
new file mode 100644 (file)
index 0000000..a37db81
--- /dev/null
@@ -0,0 +1,186 @@
+<gils>
+
+<Title>
+COAL SAMPLE BANK
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+COAL; MACERAL; METHANE; PETROGRAPHY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains methane data, chemical analysis data, and petrographic 
+analysis data on core samples in Utah.
+<Format>
+DIGITAL DATA SETS; FILE FOLDERS
+</Format>
+
+<Comments>
+Coal pellets are stored.  Future plans are to store coal samples under water.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+COAL SAMPLE BANK
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+550
+</Number-of-Records>
+
+<Computer-Type>
+COMPACT AT COMPATIBLE
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+ALEX KEITH
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0034
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0035.grs b/examples/gils/records/esdd0035.grs
new file mode 100644 (file)
index 0000000..1a4100e
--- /dev/null
@@ -0,0 +1,188 @@
+<gils>
+
+<Title>
+UTAH GEOLOGIC MAP BIBLIOGRAPHY
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+ARIZONA; COLORADO; GEOLOGY; IDAHO; MAP; NEVADA; UTAH; WYOMING
+</Local-Subject-Index>
+
+<Abstract>
+This collection consists of theses, dissertations, and other unpublished maps 
+as well as published maps of the geology of Utah.  Some maps of the collection 
+are xeroxed from limited collections.  Cross-sections are included in set.  
+Data file consists of map bibliography.
+<Format>
+MAP SETS; BIBLIOGRAPHIES
+</Format>
+
+<Comments>
+Approximately 700 maps are in the set.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH GEOLOGIC MAP BIBLIOGRAPHY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+1,100
+</Number-of-Records>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+HELLMUT DOELLING
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0035
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0036.grs b/examples/gils/records/esdd0036.grs
new file mode 100644 (file)
index 0000000..112002c
--- /dev/null
@@ -0,0 +1,177 @@
+<gils>
+
+<Title>
+MEASURED GEOLOGIC SECTIONS
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+FOSSIL; GEOLOGY; LITHOLOGY; PALEONTOLOGY; STRATIGRAPHY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Selected geologic sections and references to geologic sections concerning Utah 
+geology comprise this data set.  Formation, lithologic description, fossils, 
+thickness, location of section, and Utah type sections are included in this 
+data set.
+<Format>
+FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE; UTM NORTHINGS AND EASTINGS; PUBLIC LAND SURVEY (SECTION, 
+TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+MEASURED GEOLOGIC SECTIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+UNDER DEVELOPMENT
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+HELLMUT DOELLING
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0036
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0037.grs b/examples/gils/records/esdd0037.grs
new file mode 100644 (file)
index 0000000..96abf28
--- /dev/null
@@ -0,0 +1,174 @@
+<gils>
+
+<Title>
+UTAH GEOLOGICAL SOCIETY PUBLICATIONS
+<Acronym>
+UGS
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+ARIZONA; COLORADO; GEOLOGY; IDAHO; NEVADA; UTAH; WYOMING
+</Local-Subject-Index>
+
+<Abstract>
+Guidebooks and field logs of selected areas in Utah and neighboring states 
+comprise this data set.
+<Format>
+REPORT SETS; LOGS
+</Format>
+
+<Comments>
+Society merged into Utah Geological Association in 1970. Complete set of 
+publications is available in UGMS Library.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1946-1970
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH GEOLOGICAL SOCIETY PUBLICATIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0037
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0038.grs b/examples/gils/records/esdd0038.grs
new file mode 100644 (file)
index 0000000..d5df08b
--- /dev/null
@@ -0,0 +1,175 @@
+<gils>
+
+<Title>
+INTERMOUNTAIN ASSOCIATION OF PETROLEUM GEOLOGISTS/GEOLOGISTS PUBLICATIONS
+<Acronym>
+IAPG/IAG
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AREAL GEOLOGY; ARIZONA; COLORADO; GEOLOGY; IDAHO; MONTANA; NEVADA; NEW MEXICO; 
+UTAH; WYOMING
+</Local-Subject-Index>
+
+<Abstract>
+Guidebooks and field trip logs covering intermountain states: Utah, New Mexico, 
+Colorado, Wyoming, Montana, Nevada, Idaho, Arizona comprise this data set.
+<Format>
+REPORT SETS; LOGS
+</Format>
+
+<Comments>
+Society merged into Utah Geological Association in 1970. Complete set of 
+publications is available in UGMS Library.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1950-1970
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+INTERMOUNTAIN ASSOCIATION OF PETROLEUM GEOLOGISTS/GEOLOGISTS PUBLICATIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0038
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0039.grs b/examples/gils/records/esdd0039.grs
new file mode 100644 (file)
index 0000000..022cd93
--- /dev/null
@@ -0,0 +1,172 @@
+<gils>
+
+<Title>
+UTAH GEOLOGICAL ASSOCIATION PUBLICATIONS
+<Acronym>
+UGA
+</Acronym>
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AREAL GEOLOGY; GEOLOGY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Guidebooks and field logs of selected Utah sites comprise this data set.
+<Format>
+REPORT SETS; LOGS
+</Format>
+
+<Comments>
+Complete set of publications is available in UGMS Library.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1970-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+UTAH GEOLOGICAL ASSOCIATION PUBLICATIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0039
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0040.grs b/examples/gils/records/esdd0040.grs
new file mode 100644 (file)
index 0000000..67e347f
--- /dev/null
@@ -0,0 +1,172 @@
+<gils>
+
+<Title>
+ELECTRIC LOG LIBRARY
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AREAL GEOLOGY; CRUDE OIL; ELECTRICITY; GEOLOGY; GEOPHYSICAL; HYDROCARBON; 
+LITHOLOGY; MUD; OIL; PETROLEUM; PETROLEUM WELL; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Logs for selected petroleum wells include electric (all varieties) and 
+lithologic or hydrocarbon logs.  Duplicates from OG&amp;M well records file, 
+supplied by private concerns.  The areal coverage is Utah and vicinity.
+<Format>
+LOGS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+ECONOMIC PROGRAM, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+ELECTRIC LOG LIBRARY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+UNDER DEVELOPMENT
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+ECONOMIC PROGRAM, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0040
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0041.grs b/examples/gils/records/esdd0041.grs
new file mode 100644 (file)
index 0000000..c1930e1
--- /dev/null
@@ -0,0 +1,181 @@
+<gils>
+
+<Title>
+WELL SAMPLE LIBRARY
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+CORE; CORE CHIPS; CRUDE OIL; DRILL CUTTINGS; GEOTHERMAL; GEOTHERMAL WELL; MINE; 
+OIL; PETROLEUM; PETROLEUM WELL; STRATIGRAPHY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Petroleum, mining, geothermal, and stratigraphic samples, including cores, core 
+chips and drill cuttings comprise this data set.  This does not include logs or 
+description.  These data are supplied by outside agencies and private 
+organizations.
+<Format>
+SAMPLE CONTAINERS
+</Format>
+
+<Comments>
+Samples may be inspected by appointment only.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+WELL SAMPLE LIBRARY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+CAROLYN OLSEN
+</Name>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0041
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0042.grs b/examples/gils/records/esdd0042.grs
new file mode 100644 (file)
index 0000000..b391751
--- /dev/null
@@ -0,0 +1,184 @@
+<gils>
+
+<Title>
+BIBLIOGRAPHY OF UTAH GEOLOGY
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+COAL; EARTHQUAKE; GEOLOGY; GREAT SALT LAKE; LANDSLIDE; SEISMOLOGY; 
+STRATIGRAPHY; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+Keyworded compilation of 11,300 bibliographic entries consisting of 
+commodities, applied geology, investigation procedures and stratigraphic units 
+related to Utah comprise this data set.  Entries are searchable by state, 
+county, quadrangle, as well as keywords.  Entries include theses and 
+dissertations referenced in GEOREF to 1980.
+<Format>
+BIBLIOGRAPHIES
+</Format>
+
+<Comments>
+Utah Radioactive Occurrences, Great Salt Lake, Landslide, Earthquakes, and Utah 
+
+Coal Bibliographies are included.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH AND NEIGHBORING STATES
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-102
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+49
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+31
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+BIBLIOGRAPHY OF UTAH GEOLOGY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Computer-Type>
+PC NETWORK
+</Computer-Type>
+
+<Computer-Location>
+SALT LAKE CITY, UT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+INFORMATION SECTION, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0042
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0044.grs b/examples/gils/records/esdd0044.grs
new file mode 100644 (file)
index 0000000..9c10284
--- /dev/null
@@ -0,0 +1,174 @@
+<gils>
+
+<Title>
+OIL IMPREGNATED ROCK DEPOSITS
+</Title>
+
+<Originator>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+BASALT; CRUDE OIL; GEOLOGY; LIMESTONE; OIL; PETROLEUM; PETROLEUM WELL; TAR; TAR 
+BASALT; TAR LIMESTONE; TAR SAND; UTAH
+</Local-Subject-Index>
+
+<Abstract>
+High viscosity, low volatile content, hydrocarbon deposits which are developed 
+using unconventional petroleum methods comprise this data set.  Deposits 
+include tar sands, limestones, basalts but not shales or solid hydrocarbons.  
+This file includes outcrop maps, field notes, references, logs, stratigraphy, 
+geologic report, and production from outside or in-house sources.
+<Format>
+FILE FOLDERS
+</Format>
+
+<Comments>
+Much unpublished data.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+UTAH
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-114
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-109
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+37
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+ECONOMIC PROGRAM, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+OIL IMPREGNATED ROCK DEPOSITS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Organization>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Organization>
+
+<Street-Address>
+ECONOMIC PROGRAM, 606 BLACK HAWK WAY
+</Street-Address>
+
+<City>
+SALT LAKE CITY
+</City>
+
+<State>
+UT
+</State>
+
+<Zip-Code>
+84108
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(801) 581-6831
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0044
+</Control-Identifier>
+
+<Record-Source>
+UTAH GEOLOGICAL AND MINERAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198903
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0045.grs b/examples/gils/records/esdd0045.grs
new file mode 100644 (file)
index 0000000..943118a
--- /dev/null
@@ -0,0 +1,152 @@
+<gils>
+
+<Title>
+ENGINEERING GEOLOGY (UNPUBLISHED REPORTS AND MAPS)
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+CARTOGRAPHY; ENGINEERING; GEOLOGY; MAP; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+Project name, location, geologic information, engineering information, firm or 
+individual making report or map are components of this database.
+<Format>
+MAP SETS; REPORT SETS; INDIVIDUAL MAPS; FILE FOLDERS; LOGS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; COUNTIES; 1 DEG. X 2 DEG. QUAD
+</Geographic-Coverage>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+ENGINEERING GEOLOGY (UNPUBLISHED REPORTS AND MAPS)
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BECKY WEIMER PURKEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0045
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0046.grs b/examples/gils/records/esdd0046.grs
new file mode 100644 (file)
index 0000000..921db7e
--- /dev/null
@@ -0,0 +1,196 @@
+<gils>
+
+<Title>
+OIL AND GAS WELLS DRILLED SINCE 1986, LIST L8
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+CRUDE OIL; GAS; GAS WELL; NEVADA; OIL; OIL WELL; PETROLEUM; PETROLEUM WELL
+</Local-Subject-Index>
+
+<Abstract>
+This database contains information about oil and gas wells drilled since 1986 
+such as well name, location, depth, permit number, company (owner), and 
+producing or dry hole.
+<Format>
+CATALOGS/INDEXES
+</Format>
+
+<Data-Category>
+TERRESTRIAL
+</Data-Category>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1986-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA, M.S. 178
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557-0088
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+OIL AND GAS WELLS DRILLED SINCE 1986, LIST L8
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+PC-FILE VERSION 5.0
+</DBMS>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+200
+</Number-of-Records>
+
+<Computer-Type>
+IBM PC/XT/AT/386
+</Computer-Type>
+
+<Computer-Location>
+RENO, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Updates Nevada Bureau of Mines and Geology Bulletin 104, Oil and Gas 
+Developments in Nevada, 1907-1986.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+RONALD HESS
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA, M.S. 178
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557-0088
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0046
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0047.grs b/examples/gils/records/esdd0047.grs
new file mode 100644 (file)
index 0000000..2f04bc0
--- /dev/null
@@ -0,0 +1,158 @@
+<gils>
+
+<Title>
+ISOTOPIC DATES OF ROCKS AND MINERALS
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; ISOTOPIC DATE; MINERAL; NEVADA; ROCK
+</Local-Subject-Index>
+
+<Abstract>
+Rock type, collection location, sample description, analytical method, 
+analytical data, lab performing analytical work, age in month-year, isotopic 
+method used, comments on reliability of age determination, and collector's 
+identification are components of this data set.
+<Format>
+CATALOGS/INDEXES; FILE FOLDERS
+</Format>
+
+<Comments>
+No easy search method; one must search through all the issues of the journal; 
+articles describe new dates or are a compilation of all dates from a particular 
+
+area, rock type, etc.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE; WESTERN HEMISPHERE
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE; PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA; UNITED STATES; WESTERN HEMISPHERE
+</Coverage-Description>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1970-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+ISOTOPIC DATES OF ROCKS AND MINERALS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Data published in Isochron/West, a scientific journal published three times a 
+year.
+</Documentation>
+</Access-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+LARRY GARSIDE
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0047
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0048.grs b/examples/gils/records/esdd0048.grs
new file mode 100644 (file)
index 0000000..bb2a190
--- /dev/null
@@ -0,0 +1,175 @@
+<gils>
+
+<Title>
+MINERAL OCCURRENCES, DEPOSITS, PROSPECTS, AND MINES
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; MINE; MINERAL; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+Name, location, workings, geologic description, history of development and 
+mining (if any), analyses of rocks and minerals, and references are components 
+of this database.
+<Format>
+MAP SETS; REPORT SETS; CATALOGS/INDEXES; PHOTOGRAPHS; BIBLIOGRAPHIES; FILE 
+FOLDERS; ROCK AND MINERAL SAMPLES
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+UTM NORTHINGS AND EASTINGS; PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1970-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+MINERAL OCCURRENCES, DEPOSITS, PROSPECTS, AND MINES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+
+<Number-of-Records>
+20,000
+</Number-of-Records>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+As an area is covered, the data is open-filed at the Nevada Bureau of Mines and 
+
+Geology.
+</Documentation>
+</Access-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOE TINGLEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0048
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0049.grs b/examples/gils/records/esdd0049.grs
new file mode 100644 (file)
index 0000000..22be44a
--- /dev/null
@@ -0,0 +1,192 @@
+<gils>
+
+<Title>
+GEOTHERMAL WELLS DRILLED SINCE 1976
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+GEOTHERMAL; GEOTHERMAL WELL; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+Well name, operator, location, depth, highest temperature reached are 
+components of these data which describe those geothermal wells that have been 
+drilled since 1976.
+<Format>
+CATALOGS/INDEXES
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1976-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+GEOTHERMAL WELLS DRILLED SINCE 1976
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+WORDPERFECT
+</DBMS>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+100
+</Number-of-Records>
+
+<Computer-Type>
+IBM COMPATIBLE
+</Computer-Type>
+
+<Computer-Location>
+RENO, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Nevada Bureau of Mines Open-File Report Special Publication List 4 (updates 
+Appendix 2 of Bulletin 91 Nevada Bureau of Mines and Geology).
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BECKY WEIMER PURKEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0049
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0050.grs b/examples/gils/records/esdd0050.grs
new file mode 100644 (file)
index 0000000..2da9353
--- /dev/null
@@ -0,0 +1,190 @@
+<gils>
+
+<Title>
+CORE AND CUTTINGS IN NBMG 'LIBRARY'
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+CORE; GEOLOGY; MINE; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+This data set describes the NBMG holdings of core and cuttings for Nevada.  It 
+includes driller identification, hole name, location, depth of hole, and log 
+types.
+<Format>
+FILE FOLDERS; LOGS; CORE/CUTTINGS (SAMPLES)
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE; PUBLIC LANE SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1960-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+CORE AND CUTTINGS IN NBMG 'LIBRARY'
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+WORDPERFECT
+</DBMS>
+
+<Access-Method>
+BATCH
+</Access-Method>
+
+<Computer-Type>
+IBM COMPATIBLE
+</Computer-Type>
+
+<Computer-Location>
+RENO, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Listed in NBMG Report 30, The Nevada Bureau of Mines and Geology Sample Library 
+
+- An Index to Drill Core and Cuttings in the Collection and also in Special 
+Publication L3, which updates the list.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BECKY WEIMER PURKEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0050
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0051.grs b/examples/gils/records/esdd0051.grs
new file mode 100644 (file)
index 0000000..9776a8b
--- /dev/null
@@ -0,0 +1,212 @@
+<gils>
+
+<Title>
+OIL/GAS DRILLING
+<Acronym>
+NVOILWEL
+</Acronym>
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+CORE; CRUDE OIL; GAS; GAS WELL; NEVADA; OIL; OIL WELL; PETROLEUM; PETROLEUM 
+WELL
+</Local-Subject-Index>
+
+<Abstract>
+This database contains information on oil and gas drilling such as well name, 
+operator, driller, location, depth, copies of logs run, permits, samples 
+(cuttings, core), completion records.
+<Format>
+REPORT SETS; DIGITAL DATA SETS; FILE FOLDERS; MICROGRAPHICS; LOGS; COMPUTER 
+DATA BASE RECORDS
+</Format>
+
+<Data-Category>
+TERRESTRIAL
+</Data-Category>
+
+<Comments>
+DOCUMENTATION continued: Special Publication l4; Bulletin 104, Oil and Gas 
+Developments in Nevada, 1907-1986; Special Publication l8.  COMMENTS: Not all 
+data in this data set is available on-line.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+UTM NORTHINGS AND EASTINGS; PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1907-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA, M.S. 178
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557-0088
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+OIL/GAS DRILLING
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+PC-FILE, VERSION 5.0
+</DBMS>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+700
+</Number-of-Records>
+
+<Bytes-Per-Record>
+400
+</Bytes-Per-Record>
+
+<Computer-Type>
+IBM PC/XT/AT/386
+</Computer-Type>
+
+<Computer-Location>
+RENO, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Listed and described in NBMG Bulletin 52, Nevada Oil and Gas Drilling Data, 
+1906-1953; Report 18, Oil and Gas Developments in Nevada, 1953-1967; Report 
+29;(continued in COMMENTS section)
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+RONALD HESS
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA, M.S. 178
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557-0088
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0051
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0052.grs b/examples/gils/records/esdd0052.grs
new file mode 100644 (file)
index 0000000..27e6fe2
--- /dev/null
@@ -0,0 +1,176 @@
+<gils>
+
+<Title>
+THESES ON NEVADA GEOLOGY
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+This database contains catalogs and indexes of geology theses in Nevada.  Some 
+of the information included are author, title, location, degree, and 
+university.
+<Format>
+CATALOGS/INDEXES
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1976-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+THESES ON NEVADA GEOLOGY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Bibliography of Graduate Theses on Nevada Geology to 1976:  Nevada Bureau of 
+Mines and Geology, Report 31.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BECKY WEIMER PURKEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0052
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0053.grs b/examples/gils/records/esdd0053.grs
new file mode 100644 (file)
index 0000000..dccc7eb
--- /dev/null
@@ -0,0 +1,187 @@
+<gils>
+
+<Title>
+SAMPLES ANALYZED FOR PROSPECTORS IN THE NBMG (NMAL) CHEMICAL LABORATORY
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; MINE; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+This database contains reports on samples analyzed in the NBMG (NMAL) Chemical 
+Laboratory.  The reports include such information as prospector's name, 
+address, location, sample description, and analytical results.
+<Format>
+REPORT SETS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+MINING DISTRICT
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1925-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+SAMPLES ANALYZED FOR PROSPECTORS IN THE NBMG (NMAL) CHEMICAL LABORATORY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+20,000
+</Number-of-Records>
+
+<Computer-Type>
+PCJR (IBM)
+</Computer-Type>
+
+<Computer-Location>
+RENO, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+PAUL LECHLER
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0053
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0054.grs b/examples/gils/records/esdd0054.grs
new file mode 100644 (file)
index 0000000..7094cea
--- /dev/null
@@ -0,0 +1,183 @@
+<gils>
+
+<Title>
+GROUNDWATER RESOURCE MAPS - COUNTY SERIES
+<Acronym>
+GRWM
+</Acronym>
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AQUIFER; BEDROCK; BEDROCK AQUIFER; BEDROCK WELL; COAST; COASTAL MAINE; 
+COASTLINE; GROUNDWATER; HYDROLOGY; MAINE; MAP; WATER
+</Local-Subject-Index>
+
+<Abstract>
+A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
+bedrock for a large number of bedrock wells inventoried by the Maine Geological 
+Survey in the mid-to late 1970's comprises this data set.  Some series also 
+show bedrock topography and potentiometric surface.  Geographic coverage is 
+restricted to Southern Maine.
+<Format>
+MAP SETS
+</Format>
+
+<Comments>
+This is a compilation of bedrock well inventory information. Bedrock inventory 
+data are available on sequential computer tape. No additional maps in this 
+series are planned.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+COUNTIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1972-1978
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+GROUNDWATER RESOURCE MAPS - COUNTY SERIES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOHN WILLIAMS
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0054
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0055.grs b/examples/gils/records/esdd0055.grs
new file mode 100644 (file)
index 0000000..cb541be
--- /dev/null
@@ -0,0 +1,174 @@
+<gils>
+
+<Title>
+RECONNAISSANCE SURFICIAL GEOLOGIC MAP SERIES
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; GLACIAL DEPOSITS; GLACIER; MAINE; MAP; SURFICIAL GEOLOGY
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains a series of 1:24,000 and 1:62,500 scale reconnaissance 
+surficial geologic maps prepared with a uniform explanation and format.
+<Format>
+MAP SETS
+</Format>
+
+<Comments>
+Sixty percent of the state is at either 1:24,000 or 1:62,500 scale.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1978-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+RECONNAISSANCE SURFICIAL GEOLOGIC MAP SERIES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+WOODROW THOMPSON
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0055
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0056.grs b/examples/gils/records/esdd0056.grs
new file mode 100644 (file)
index 0000000..2111050
--- /dev/null
@@ -0,0 +1,173 @@
+<gils>
+
+<Title>
+COASTAL MARINE GEOLOGIC ENVIRONMENTS MAP SERIES
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+COAST; COASTAL MAINE; COASTLINE; GEOLOGY; HYDROLOGY; MAINE; MAP; MARINE; MARINE 
+GEOLOGY; TIDAL WATER; WATER
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains a series of 1:24,000 scale maps of coastal marine 
+geologic environments, including the supratidal, intertidal, and subtidal 
+regimes.  The information is derived primarily from air photo interpretation 
+with representative field checking.
+<Format>
+MAP SETS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE; COASTAL MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1977-1978
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+COASTAL MARINE GEOLOGIC ENVIRONMENTS MAP SERIES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+ROBERT TUCKER
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0056
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0057.grs b/examples/gils/records/esdd0057.grs
new file mode 100644 (file)
index 0000000..661758f
--- /dev/null
@@ -0,0 +1,170 @@
+<gils>
+
+<Title>
+FRESH WATER WETLANDS MAPS
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+FRESH WATER WETLAND; MAINE; MAP; WETLAND
+</Local-Subject-Index>
+
+<Abstract>
+Contained are a series of 1:50,000 scale maps showing regulated and unregulated 
+fresh water wetlands in the organized territories.  Included is a table 
+describing each mapped wetland.
+<Format>
+MAP SETS; TABLES
+</Format>
+
+<Comments>
+1:50,000 scale base maps are derived from USGS quadrangle maps; restricted to 
+organized territories.  Data from 1980-1981 1:40,000 aerial photography are 
+plotted on 1:50,000 base maps.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+FRESH WATER WETLANDS MAPS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOHN WILLIAMS
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0057
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0058.grs b/examples/gils/records/esdd0058.grs
new file mode 100644 (file)
index 0000000..ad622da
--- /dev/null
@@ -0,0 +1,183 @@
+<gils>
+
+<Title>
+SAND AND GRAVEL AQUIFER MAPS
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AQUIFER; GROUNDWATER; HYDROLOGY; MAINE; MAP; SURFICIAL AQUIFER; SURFICIAL 
+DEPOSIT; WATER
+</Local-Subject-Index>
+
+<Abstract>
+A series of 1:50,000 scale maps showing the outlines of known deposits of 
+coarse surficial material with well yields greater than 10 gallons per minute 
+(gpm) and 50 gpm comprises this data set.  Other information pertaining to 
+wells, test pits, borings, etc., are also shown.  Tables describe other 
+geologic information pertaining to the deposits.
+<Format>
+MAP SETS; LOGS; TABLES
+</Format>
+
+<Comments>
+This program is superseded by the Significant Aquifers Program. More detailed 
+maps of significant surficial aquifers are published for some areas and planned 
+
+for others.  See Significant Aquifer Map Series.  1:50,000 scale base maps 
+derived from USGS quadrangles; no coverage in Northwest and parts of Eastern 
+Maine.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1978-1981
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+SAND AND GRAVEL AQUIFER MAPS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOHN WILLIAMS
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0058
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0059.grs b/examples/gils/records/esdd0059.grs
new file mode 100644 (file)
index 0000000..b8d230e
--- /dev/null
@@ -0,0 +1,179 @@
+<gils>
+
+<Title>
+SIGNIFICANT AQUIFERS MAP SERIES
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+AQUIFER; GEOCHEMISTRY; GROUNDWATER; HYDROLOGY; MAINE; MAP; SURFICIAL AQUIFER; 
+SURFICIAL DEPOSIT; WATER; WATER WELL
+</Local-Subject-Index>
+
+<Abstract>
+The Significant Aquifers Program is a more detailed study of selected major 
+surficial aquifers.  Data reported includes outline of aquifers, seismic 
+cross-sections, well yields, logs of borings, and regional groundwater 
+geochemistry.  Many are in extreme SW Maine at this time.  Areas in North and 
+Central Maine are not yet covered.
+<Format>
+MAP SETS; REPORT SETS
+</Format>
+
+<Comments>
+Detailed study of selected major surficial aquifers; replaced Sand and Gravel 
+Aquifer Mapping Program.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE; SOUTHWEST MAINE; SOUTHWESTERN MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1982-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+SIGNIFICANT AQUIFERS MAP SERIES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOHN WILLIAMS
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0059
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0062.grs b/examples/gils/records/esdd0062.grs
new file mode 100644 (file)
index 0000000..fbf1717
--- /dev/null
@@ -0,0 +1,192 @@
+<gils>
+
+<Title>
+BIBLIOGRAPHY OF MAINE GEOLOGY
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+GEOLOGY; MAINE
+</Local-Subject-Index>
+
+<Abstract>
+This data base is a computer based bibliography of marine geology.  It allows 
+searching by topic and geographic location, similar to GEOREF.  It is currently 
+under development to replace the printed Bibliography of Marine Geology.
+<Format>
+BIBLIOGRAPHIES
+</Format>
+
+<Comments>
+Software developed by the Maine Geological Survey; documentation developed by 
+the Maine Geological Survey staff and written in ANSI COBOL.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; CITIES; US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1692-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+BIBLIOGRAPHY OF MAINE GEOLOGY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+3,500
+</Number-of-Records>
+
+<Bytes-Per-Record>
+768
+</Bytes-Per-Record>
+
+<Computer-Type>
+BURROUGHS B20
+</Computer-Type>
+
+<Computer-Location>
+AUGUSTA, ME.
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+UNDER DEVELOPMENT
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+ROBERT MARVINNEY
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0062
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0063.grs b/examples/gils/records/esdd0063.grs
new file mode 100644 (file)
index 0000000..0bd55e8
--- /dev/null
@@ -0,0 +1,186 @@
+<gils>
+
+<Title>
+MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY
+</Title>
+
+<Originator>
+MAINE GEOLOGICAL SURVEY
+</Originator>
+
+<Local-Subject-Index>
+BEDROCK; BEDROCK WELL; GROUNDWATER; HYDROLOGY; MAINE; WATER; WATER WELL
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains a series of well inventory maps stored on tape.  The 
+series has no indexing.
+<Format>
+INVENTORY
+</Format>
+
+<Comments>
+Resumed within the next fiscal year (1985-86).
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+MAINE
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-71
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-67
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+48
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+43
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1972-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Number-of-Records>
+15,000
+</Number-of-Records>
+
+<Bytes-Per-Record>
+400
+</Bytes-Per-Record>
+
+<Computer-Type>
+BURROUGHS B20
+</Computer-Type>
+
+<Computer-Location>
+AUGUSTA, ME.
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Format and card image available from the Maine Geological Survey.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+JOHN WILLIAMS
+</Name>
+
+<Organization>
+MAINE GEOLOGICAL SURVEY
+</Organization>
+
+<Street-Address>
+MAINE GEOLOGICAL SURVEY, STATE HOUSE STATION 22
+</Street-Address>
+
+<City>
+AUGUSTA
+</City>
+
+<State>
+ME
+</State>
+
+<Zip-Code>
+04333
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(207) 289-2801
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0063
+</Control-Identifier>
+
+<Record-Source>
+MAINE GEOLOGICAL SURVEY
+</Record-Source>
+
+<Date-of-Last-Modification>
+198709
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0064.grs b/examples/gils/records/esdd0064.grs
new file mode 100644 (file)
index 0000000..14814c4
--- /dev/null
@@ -0,0 +1,187 @@
+<gils>
+
+<Title>
+OPERATING MINES
+</Title>
+
+<Originator>
+STATE MINE INSPECTOR'S OFFICE
+</Originator>
+
+<Local-Subject-Index>
+INDUSTRY; MINE; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+This database contains information on operating mines in Nevada such as mine 
+name, operator, number of employees, address, manager's name, substance mined 
+or processed.
+<Format>
+CATALOGS/INDEXES; DIGITAL DATA SETS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+STATE MINE INSPECTOR'S OFFICE
+</Organization>
+
+<Street-Address>
+STATE MINE INSPECTOR, NEVADA DEPT. OF INDUSTRIAL RELATIONS, 1380 S. CURRY
+</Street-Address>
+
+<City>
+CARSON CITY
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89710
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 687-5243
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+OPERATING MINES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+500
+</Number-of-Records>
+
+<Computer-Type>
+GOLDSTAR
+</Computer-Type>
+
+<Computer-Location>
+CARSON CITY, NV
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+KATHY HALL
+</Name>
+
+<Organization>
+STATE MINE INSPECTOR'S OFFICE
+</Organization>
+
+<Street-Address>
+STATE MINE INSPECTOR, NEVADA DEPT. OF INDUSTRIAL RELATIONS, 1380 S. CURRY
+</Street-Address>
+
+<City>
+CARSON CITY
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89710
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 687-5243
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0064
+</Control-Identifier>
+
+<Record-Source>
+STATE MINE INSPECTOR'S OFFICE
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0065.grs b/examples/gils/records/esdd0065.grs
new file mode 100644 (file)
index 0000000..5ec2ac9
--- /dev/null
@@ -0,0 +1,160 @@
+<gils>
+
+<Title>
+BULLETINS, REPORTS, MAPS, SPECIAL PUBLICATIONS, AND URBAN MAPS
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+CARTOGRAPHY; GEOLOGY; GEOTHERMAL; GEOTHERMAL WELL; MAP; MINERAL; NEVADA
+</Local-Subject-Index>
+
+<Abstract>
+A collection of varied information sources dealing with geology, mines, and 
+geothermal waters in Nevada comprises this data set.
+<Format>
+REPORT SETS; CATALOGS/INDEXES; INDIVIDUAL MAPS; BIBLIOGRAPHIES; FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; CITIES; US STATE; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+BULLETINS, REPORTS, MAPS, SPECIAL PUBLICATIONS, AND URBAN MAPS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+ARLENE KRAMER
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0065
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0066.grs b/examples/gils/records/esdd0066.grs
new file mode 100644 (file)
index 0000000..6c92436
--- /dev/null
@@ -0,0 +1,169 @@
+<gils>
+
+<Title>
+ORE DEPOSITS (UNPUBLISHED REPORTS AND MAPS)
+</Title>
+
+<Originator>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Originator>
+
+<Local-Subject-Index>
+MINE; NEVADA; ORE; ORE DEPOSIT
+</Local-Subject-Index>
+
+<Abstract>
+Occurrence, prospect, or mine name, mining district, description of man-made 
+things (workings, buildings, etc.), and a description of geologic setting are 
+descriptive elements of reports and maps on ore deposits in Nevada.
+<Format>
+MAP SETS; REPORT SETS; PHOTOGRAPHS; INDIVIDUAL MAPS; FILE FOLDERS; LOGS; 
+NEWSPAPER CLIPPINGS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE; COUNTIES; MINING DISTRICT
+</Geographic-Coverage>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1960-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+ORE DEPOSITS (UNPUBLISHED REPORTS AND MAPS)
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+
+<Number-of-Records>
+25,000
+</Number-of-Records>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+BECKY WEIMER PURKEY
+</Name>
+
+<Organization>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Organization>
+
+<Street-Address>
+NEVADA BUREAU OF MINES AND GEOLOGY, UNIVERSITY OF NEVADA
+</Street-Address>
+
+<City>
+RENO
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89557
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 784-6691
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0066
+</Control-Identifier>
+
+<Record-Source>
+NEVADA BUREAU OF MINES AND GEOLOGY
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0067.grs b/examples/gils/records/esdd0067.grs
new file mode 100644 (file)
index 0000000..b973d3b
--- /dev/null
@@ -0,0 +1,179 @@
+<gils>
+
+<Title>
+WATER WELL DATA
+</Title>
+
+<Originator>
+NV DEPT. OF CONS. AND NATURAL RESOURCES
+</Originator>
+
+<Local-Subject-Index>
+HYDROLOGY; LITHOLOGY; NEVADA; WATER; WATER WELL
+</Local-Subject-Index>
+
+<Abstract>
+This database contains the following information on water wells in Nevada: 
+driller's name, owner's name, location, formations encountered, lithologic 
+descriptions, water level, and water quality.
+<Format>
+REPORT SETS; CATALOGS/INDEXES; FILE FOLDERS; LOGS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES; COUNTIES
+</Geographic-Coverage>
+
+<Coordinate-System>
+UTM NORTHINGS AND EASTINGS; PUBLIC LAND SURVEY (SECTION, TOWNSHIP, AND RANGE)
+</Coordinate-System>
+
+<Coverage-Description>
+NEVADA
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-120
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-114
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+35
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1930-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+NV DEPT. OF CONS. AND NATURAL RESOURCES
+</Organization>
+
+<Street-Address>
+DCNR, DIVISION OF WATER RESOURCES, 123 W. NYE LANE
+</Street-Address>
+
+<City>
+CARSON CITY
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89710
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 687-4380
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+WATER WELL DATA
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+
+<Number-of-Records>
+20,000
+</Number-of-Records>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+MIKE TURNIPSEED
+</Name>
+
+<Organization>
+NV DEPT. OF CONS. AND NATURAL RESOURCES
+</Organization>
+
+<Street-Address>
+DCNR, DIVISION OF WATER RESOURCES, 123 W. NYE LANE
+</Street-Address>
+
+<City>
+CARSON CITY
+</City>
+
+<State>
+NV
+</State>
+
+<Zip-Code>
+89710
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(702) 687-4380
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0067
+</Control-Identifier>
+
+<Record-Source>
+NV DEPT. OF CONS. AND NATURAL RESOURCES
+</Record-Source>
+
+<Date-of-Last-Modification>
+199101
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0070.grs b/examples/gils/records/esdd0070.grs
new file mode 100644 (file)
index 0000000..17efa30
--- /dev/null
@@ -0,0 +1,198 @@
+<gils>
+
+<Title>
+CENSUS DATA
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL DEVELOPMENT
+</Originator>
+
+<Local-Subject-Index>
+AGRICULTURE; CENSUS; CONNECTICUT; DEMOGRAPHICS; ECONOMY; POPULATION
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains:  1990 Census of Population and Housing; 1987 Economic 
+Census; 1987 Agricultural Census; current population survey; population 
+projections; current and historical data for the State of Connecticut and its 
+subdivisions pursuant to the State Data Center program with the U.S. Bureau of 
+the Census.
+<Format>
+MAP SETS; REPORT SETS; CATALOGS/INDEXES; DIGITAL DATA SETS; INDIVIDUAL MAPS; 
+MICROGRAPHICS
+</Format>
+
+<Comments>
+In addition to census data, assistance is provided for identification of 
+available State generated demographic data.  Alternate contact:  James Palma.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES; US STATE; COUNTIES; METROPOLITAN AREAS
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT; METROPOLITAN AREAS SUCH AS CENSUS; TRACTS, BLOCK GROUPS, AND 
+STREET BLOCKS
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1940-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL DEVELOPMENT
+</Organization>
+
+<Street-Address>
+OFC. OF POLICY &amp; MGMT., STATE DATA CTR., POLICY DEVELOPMENT &amp; PLANNING 
+DIVISION, 80 WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8285
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+CENSUS DATA
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+SAS, CENSPAC
+</DBMS>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Bytes-Per-Record>
+80-1,956
+</Bytes-Per-Record>
+
+<Computer-Type>
+IBM 370/168
+</Computer-Type>
+
+<Computer-Location>
+HARTFORD, CT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+Utilize Bureau of the Census technical documentation for each tape file.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+THERON SCHNURE
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL DEVELOPMENT
+</Organization>
+
+<Street-Address>
+OFC. OF POLICY &amp; MGMT., STATE DATA CTR., POLICY DEVELOPMENT &amp; PLANNING 
+DIVISION, 80 WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8285
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0070
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL DEVELOPMENT
+</Record-Source>
+
+<Date-of-Last-Modification>
+199104
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0071.grs b/examples/gils/records/esdd0071.grs
new file mode 100644 (file)
index 0000000..47a5564
--- /dev/null
@@ -0,0 +1,183 @@
+<gils>
+
+<Title>
+STATEWIDE PLANNING
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+AGRICULTURE; CONNECTICUT; FLOOD; FLOOD ZONE; HYDROLOGY; INSURANCE; LAND USE; 
+RECREATION; WASTE; WASTE TREATMENT; WASTEWATER; WATER; WATER SUPPLY
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains:  1970 digitized land use maps, 1970 digitized zoning 
+maps, active agricultural areas maps (1979-1980), maps displaying current 
+National Flood Insurance Program data, locational guide map of the State 
+Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 
+land use statistical data and 1970 municipal zoning data, proposed sewer 
+service areas maps (1978) - DEP has update of this information, water 
+conservation handbooks, and various reports and maps of the areawide Waste 
+Treatment Management Planning Program (208). 
+<Format>
+MAP SETS; REPORT SETS; INDIVIDUAL MAPS; FILE FOLDERS
+</Format>
+
+<Comments>
+Alternate contact:  John Radacsi.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS; US STATE; 1:125,000 SCALE MAPS
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1960-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, POLICY DEVELOPMENT AND PLANNING DIVISION, 80 
+WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8341
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+STATEWIDE PLANNING
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+THERON SCHNURE
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, POLICY DEVELOPMENT AND PLANNING DIVISION, 80 
+WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8341
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0071
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+199104
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0072.grs b/examples/gils/records/esdd0072.grs
new file mode 100644 (file)
index 0000000..f6903a3
--- /dev/null
@@ -0,0 +1,183 @@
+<gils>
+
+<Title>
+PETROLEUM PRODUCT VENDOR REGISTRATION
+<Acronym>
+PPVR
+</Acronym>
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+CONNECTICUT; CRUDE OIL; ELECTRICITY; MAP; NATURAL GAS; OIL; PETROLEUM; VENDOR
+</Local-Subject-Index>
+
+<Abstract>
+This data set is comprised of the following:  petroleum product storage and 
+sales by vendor and municipality, petroleum product vendor ownership and 
+affiliation and maps of petroleum product storage tanks, electric transmission 
+lines, and natural gas pipelines - mylar overlays.
+<Format>
+MAP SETS; REPORT SETS; FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES; US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1975-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, ENERGY DIVISION, 80 WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-2800
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+PETROLEUM PRODUCT VENDOR REGISTRATION
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<DBMS>
+FOCUS
+</DBMS>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+3,329
+</Number-of-Records>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+RUSSELL KAPLAN
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, ENERGY DIVISION, 80 WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-2800
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0072
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0073.grs b/examples/gils/records/esdd0073.grs
new file mode 100644 (file)
index 0000000..f5792ab
--- /dev/null
@@ -0,0 +1,202 @@
+<gils>
+
+<Title>
+POPULATION PROJECTIONS
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+CENSUS; CONNECTICUT; DEMOGRAPHICS; POPULATION; POPULATION PROJECTIONS
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains population projections by age and sex. Records contain 
+identifiers, geographic coding, and population projections for 18 unique 5-year 
+age cohorts for males and females from 0-4 cohort to 85 and over cohort.  
+<Format>
+REPORT SETS; DIGITAL DATA SETS; LOTUS, ASCII
+</Format>
+
+<Comments>
+This population projections data set is contained on a seven diskettes which 
+contains the June 1989 Projection Series published by this office in the report 
+
+cited above.  Also included are birth rates, survival rates, migration rates, 
+geographic codes and zip codes to municipal conversions.  Geographical 
+Coverage: State of Connecticut 8 Counties 16 Planning Regions 5 Health Service 
+Areas 9 Labor Department Service Areas 6 Children and Youth Service Areas 16 
+Metropolitan/Non Metro Areas 169 Municipalities  Alternate contact:  James 
+Palma.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+SEE COMMENTS SECTION.
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1980-2010
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, POLICY DEVELOPMENT AND PLANNING DIVISION, 80 
+WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8285
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+POPULATION PROJECTIONS
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+2,415
+</Number-of-Records>
+
+<Bytes-Per-Record>
+148
+</Bytes-Per-Record>
+
+<Computer-Type>
+IBM COMPATIBLE PC'S
+</Computer-Type>
+
+<Computer-Location>
+HARTFORD, CT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+State of Connecticut, Office of Policy and Management, Comprehensive Planning 
+Division, 1989: 'Connecticut Population Projections,' Series 89.1.
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+THERON SCHNURE
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+OFFICE OF POLICY AND MANAGEMENT, POLICY DEVELOPMENT AND PLANNING DIVISION, 80 
+WASHINGTON STREET
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106-4459
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-8285
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0073
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+199104
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0074.grs b/examples/gils/records/esdd0074.grs
new file mode 100644 (file)
index 0000000..be1a36d
--- /dev/null
@@ -0,0 +1,177 @@
+<gils>
+
+<Title>
+INLAND WETLANDS OF CONNECTICUT
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+CONNECTICUT; HYDROLOGY; INLAND WETLAND; MAP; SOIL; WATER; WETLAND
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains inland wetlands, as defined by State statute, which are 
+delineated at a scale of 1:12,000, based predominantly on location of wet 
+soils.
+<Format>
+MAP SETS; PHOTOGRAPHS; INDIVIDUAL MAPS; FILE FOLDERS
+</Format>
+
+<Comments>
+Inland wetlands in Connecticut are defined primarily by soil characteristics.  
+Soils which are very poorly drained, alluvial, or flood plain according to the 
+National Cooperative Soil Survey are inland wetland soils.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+CITIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1972-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7280
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+INLAND WETLANDS OF CONNECTICUT
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+DOUGLAS COOPER
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7280
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0074
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0075.grs b/examples/gils/records/esdd0075.grs
new file mode 100644 (file)
index 0000000..6919ceb
--- /dev/null
@@ -0,0 +1,163 @@
+<gils>
+
+<Title>
+STREAM CHANNEL ENCROACHMENT LINE STUDIES
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+CHANNEL; CONNECTICUT; FLOOD; FLOOD ZONE; HYDROLOGY; MAP; STREAM; WATER
+</Local-Subject-Index>
+
+<Abstract>
+Detailed engineering studies and large-scale mapping delineating high flow 
+zones for regulation by the State are contained in this data set.
+<Format>
+MAP SETS; REPORT SETS; INDIVIDUAL MAPS; FILE FOLDERS
+</Format>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+SPECIFIC STREAMS
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7280
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+STREAM CHANNEL ENCROACHMENT LINE STUDIES
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+STEVEN DERBY
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7280
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0075
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0076.grs b/examples/gils/records/esdd0076.grs
new file mode 100644 (file)
index 0000000..6ca3abf
--- /dev/null
@@ -0,0 +1,186 @@
+<gils>
+
+<Title>
+AUTOMATED FLOOD WARNING NETWORK
+<Acronym>
+ASERT
+</Acronym>
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+CLIMATE; CONNECTICUT; FLOOD; FLOOD ZONE; HYDROLOGY; METEOROLOGY; PRECIPITATION; 
+RAINFALL; SOIL; STREAM; STREAMFLOW; WIND
+</Local-Subject-Index>
+
+<Abstract>
+The new system will collect rainfall, temperature, soil moisture, wind speed 
+and direction, humidity, and streamflow (above certain values).
+<Format>
+WEATHER AND STREAM DATA
+</Format>
+
+<Comments>
+Cooperative program with SCS, DEP, COE, and FEMA.  Plans call for 19 
+telemetering precipitation stations and 2 stream gauges.  Data will be 
+continuously relayed to a central facility that will predict flood situations.  
+
+Towns will be encouraged to participate.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1982-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+NATURAL RESOURCES CENTER, 165 CAPITOL AVENUE, ROOM 553
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-3540
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+AUTOMATED FLOOD WARNING NETWORK
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Computer-Type>
+IBM PC
+</Computer-Type>
+
+<Computer-Location>
+HARTFORD, CT
+</Computer-Location>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+ALLAN WILLIAMS
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+NATURAL RESOURCES CENTER, 165 CAPITOL AVENUE, ROOM 553
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-3540
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0076
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0077.grs b/examples/gils/records/esdd0077.grs
new file mode 100644 (file)
index 0000000..6a326ba
--- /dev/null
@@ -0,0 +1,185 @@
+<gils>
+
+<Title>
+DAM INVENTORY
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+BASIN; CONNECTICUT; DAM; DRAINAGE BASIN; FLOOD; FLOOD ZONE; HYDROLOGY; RIVER; 
+WATER
+</Local-Subject-Index>
+
+<Abstract>
+The inventory delineates the following:  dam name, drainage basin, water 
+course, inspection record, safety status, ownership, and other information.
+<Format>
+MAP SETS; REPORT SETS; FILE FOLDERS; LOGS
+</Format>
+
+<Comments>
+Connecticut's Dam Inventory consists of both mapped dam locations and an 
+automated file of data that describes each dam. Information is updated on an 
+ongoing basis.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+US STATE
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE
+</Coordinate-System>
+
+<Coverage-Description>
+CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7245
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+DAM INVENTORY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+AUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+INTERACTIVE
+</Access-Method>
+
+<Number-of-Records>
+4,000
+</Number-of-Records>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+PHILIP MORESCHI
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7245
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0077
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0078.grs b/examples/gils/records/esdd0078.grs
new file mode 100644 (file)
index 0000000..475b453
--- /dev/null
@@ -0,0 +1,176 @@
+<gils>
+
+<Title>
+TIDAL (COASTAL) WETLAND OF CONNECTICUT
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+COAST; COASTAL CONNECTICUT; COASTLINE; CONNECTICUT; HYDROLOGY; SOIL; TIDAL 
+WETLAND; WATER; WETLAND
+</Local-Subject-Index>
+
+<Abstract>
+Tidal wetlands, as defined by State statute, which are delineated by 
+engineering survey at a scale of 1:24,000 comprise this data set.
+<Format>
+MAP SETS; REPORT SETS; PHOTOGRAPHS; INDIVIDUAL MAPS; FILE FOLDERS
+</Format>
+
+<Comments>
+Tidal wetlands are defined by hydrologic characteristics and the presence of 
+particular flora.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+COASTAL COMMUNITIES
+</Geographic-Coverage>
+
+<Coverage-Description>
+CONNECTICUT; COASTAL CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Time-Period>
+
+<Time-Period-Textual>
+1972-PRESENT
+</Time-Period-Textual>
+</Time-Period>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7160
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+TIDAL (COASTAL) WETLAND OF CONNECTICUT
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+DOUGLAS COOPER
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+WATER RESOURCES UNIT, 165 CAPITOL AVENUE, ROOM 207
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7160
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0078
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
diff --git a/examples/gils/records/esdd0079.grs b/examples/gils/records/esdd0079.grs
new file mode 100644 (file)
index 0000000..30d148e
--- /dev/null
@@ -0,0 +1,174 @@
+<gils>
+
+<Title>
+COASTAL BOUNDARY
+</Title>
+
+<Originator>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Originator>
+
+<Local-Subject-Index>
+COAST; COASTAL CONNECTICUT; COASTLINE; CONNECTICUT; FLOOD; FLOOD ZONE; 
+HYDROLOGY; MAP; WATER
+</Local-Subject-Index>
+
+<Abstract>
+This data set contains maps delineating the coastal boundary of Connecticut as 
+defined in the Coastal Area Management Act.
+<Format>
+MAP SETS
+</Format>
+
+<Comments>
+This set of maps serves to define that area of Connecticut's coast subject to 
+special regulatory programs.  The boundaries are administrative rather than 
+resource based.
+</Comments>
+</Abstract>
+
+<Spatial-Domain>
+
+<Geographic-Coverage>
+7 1/2' OR 15' QUADS
+</Geographic-Coverage>
+
+<Coordinate-System>
+LATITUDE/LONGITUDE
+</Coordinate-System>
+
+<Coverage-Description>
+CONNECTICUT; COASTAL CONNECTICUT
+</Coverage-Description>
+
+<Bounding-Coordinates>
+
+<West-Bounding-Coordinate>
+-74
+</West-Bounding-Coordinate>
+
+<East-Bounding-Coordinate>
+-71
+</East-Bounding-Coordinate>
+
+<North-Bounding-Coordinate>
+42
+</North-Bounding-Coordinate>
+
+<South-Bounding-Coordinate>
+41
+</South-Bounding-Coordinate>
+</Bounding-Coordinates>
+</Spatial-Domain>
+
+<Availability>
+
+<Distributor>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+COASTAL MANAGEMENT UNIT, 71 CAPITOL AVENUE
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7404
+</Telephone>
+</Distributor>
+
+<Resource-Description>
+COASTAL BOUNDARY
+</Resource-Description>
+
+<Technical-Prerequisites>
+
+<Data-Set-Type>
+NONAUTOMATED
+</Data-Set-Type>
+
+<Access-Method>
+MANUAL
+</Access-Method>
+</Technical-Prerequisites>
+</Availability>
+
+<Access-Constraints>
+
+<Documentation>
+NONE
+</Documentation>
+</Access-Constraints>
+
+<Use-Constraints>
+
+<Status>
+OPERATIONAL
+</Status>
+</Use-Constraints>
+
+<Point-of-Contact>
+
+<Name>
+RON ROSZA
+</Name>
+
+<Organization>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Organization>
+
+<Street-Address>
+COASTAL MANAGEMENT UNIT, 71 CAPITOL AVENUE
+</Street-Address>
+
+<City>
+HARTFORD
+</City>
+
+<State>
+CT
+</State>
+
+<Zip-Code>
+06106
+</Zip-Code>
+
+<Country>
+USA
+</Country>
+
+<Telephone>
+(203) 566-7404
+</Telephone>
+</Point-of-Contact>
+
+<Control-Identifier>
+ESDD0079
+</Control-Identifier>
+
+<Record-Source>
+DEPARTMENT OF ENVIRONMENTAL PROTECTION
+</Record-Source>
+
+<Date-of-Last-Modification>
+198502
+</Date-of-Last-Modification>
+</gils>
+
index ad18193..f086103 100644 (file)
@@ -8,7 +8,7 @@ TESTS = stop01.sh stop02.sh stop03.sh stop04.sh \
         test1.sh test2.sh \
        timing1.sh timing2.sh
 
-EXTRA_DIST = $(TESTS) zebra.cfg zebra1.cfg zebra2.cfg
+EXTRA_DIST = $(TESTS) zebra1.cfg zebra2.cfg
 
 # FIXME:
 # test02.sh fails
diff --git a/test/gils/zebra.cfg b/test/gils/zebra.cfg
deleted file mode 100644 (file)
index ee227fa..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# Simple Zebra configuration file
-# $Id: zebra.cfg,v 1.21 2002-10-28 21:39:11 adam Exp $
-#
-# Where the schema files, attribute files, etc are located.
-profilePath: .:../../tab
-
-# Files that describe the attribute sets supported.
-attset: bib1.att
-attset: gils.att
-attset: explain.att
-
-recordtype: grs.sgml
-
-storekeys: 1
-storedata: 1
-recordId: (bib1,identifier-standard)
-isam: b
-register: reg:20M