Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/pazpar2
authorDennis Schafroth <dennis@indexdata.com>
Thu, 20 Sep 2012 10:56:30 +0000 (12:56 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Thu, 20 Sep 2012 10:56:30 +0000 (12:56 +0200)
13 files changed:
.gitignore
src/client.c
src/http_command.c
src/pazpar2_config.c
src/pazpar2_config.h
src/session.c
src/session.h
test/.gitignore
test/test-solr.xml [new file with mode: 0644]
test/test_sort.cfg
test/test_sort_4.res
test/test_sort_6.res
test/test_sort_settings.xml

index 1b85e92..0d48237 100644 (file)
@@ -1,3 +1,4 @@
+.settings/
 Makefile
 Makefile.in
 aclocal.m4
index 5a9f6fb..b85195f 100644 (file)
@@ -833,7 +833,7 @@ void client_start_search(struct client *cl)
         const char *sort_strategy_and_spec =
             get_strategy_plus_sort(cl, se->sorted_results->field);
         int increasing = se->sorted_results->increasing;
-        int position = se->sorted_results->position;
+        // int position = se->sorted_results->position;
         if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
         {
             char spec[50], *p;
index a75538f..2097eee 100644 (file)
@@ -1087,7 +1087,7 @@ static void show_records(struct http_channel *c, struct http_session *s, int act
     Odr_int total_hits;
     Odr_int approx_hits;
     int i;
-
+    struct conf_service *service = 0;
     if (!s)
         return;
 
@@ -1099,9 +1099,12 @@ static void show_records(struct http_channel *c, struct http_session *s, int act
         startn = atoi(start);
     if (num)
         numn = atoi(num);
-    if (!sort)
-        sort = "relevance";
-    if (!(sp = reclist_parse_sortparms(c->nmem, sort, s->psession->service)))
+
+    service = s->psession->service;
+    if (!sort) {
+        sort = service->default_sort;
+    }
+    if (!(sp = reclist_parse_sortparms(c->nmem, sort, service)))
     {
         error(rs, PAZPAR2_MALFORMED_PARAMETER_VALUE, "sort");
         return;
@@ -1169,6 +1172,7 @@ static void cmd_show(struct http_channel *c)
     const char *block = http_argbyname(rq, "block");
     const char *sort = http_argbyname(rq, "sort");
     const char *block_error = http_argbyname(rq, "report");
+    struct conf_service *service = 0;
 
     struct reclist_sortparms *sp;
     int status;
@@ -1179,18 +1183,18 @@ static void cmd_show(struct http_channel *c)
     if (!s)
         return;
 
-    if (!sort)
-        sort = "relevance";
+    service = s->psession->service;
+    if (!sort) {
+        sort = service->default_sort;
+    }
 
-    if (!(sp = reclist_parse_sortparms(c->nmem, sort, s->psession->service)))
+    if (!(sp = reclist_parse_sortparms(c->nmem, sort, service)))
     {
         error(c->response, PAZPAR2_MALFORMED_PARAMETER_VALUE, "sort");
         release_session(c, s);
         return;
     }
     session_sort(s->psession, sp->name, sp->increasing, sp->type == Metadata_sortkey_position);
-                 /* TODO This was too simple. Will make pazpar2 continuing reseting the session resultset and redo the search. Disable this for now
-                    sp->type == Metadata_sortkey_position */
 
     status = session_active_clients(s->psession);
 
@@ -1270,11 +1274,15 @@ static void cmd_search(struct http_channel *c)
     const char *maxrecs = http_argbyname(rq, "maxrecs");
     const char *startrecs = http_argbyname(rq, "startrecs");
     const char *limit = http_argbyname(rq, "limit");
+    const char *sort = http_argbyname(rq, "sort");
     enum pazpar2_error_code code;
     const char *addinfo = 0;
+    struct reclist_sortparms *sp;
+    struct conf_service *service = 0;
 
     if (!s)
         return;
+
     if (!query)
     {
         error(rs, PAZPAR2_MISSING_PARAMETER, "query");
@@ -1287,8 +1295,19 @@ static void cmd_search(struct http_channel *c)
         release_session(c, s);
         return;
     }
+    service = s->psession->service;
+    if (!sort) {
+        sort = service->default_sort;
+    }
+    if (!(sp = reclist_parse_sortparms(c->nmem, sort, s->psession->service)))
+    {
+        error(c->response, PAZPAR2_MALFORMED_PARAMETER_VALUE, "sort");
+        release_session(c, s);
+        return;
+    }
+
     code = session_search(s->psession, query, startrecs, maxrecs, filter, limit,
-                          &addinfo, "relevance", 0);
+                          &addinfo, sp);
     if (code)
     {
         error(rs, code, addinfo);
index 6e7652c..ca16ea5 100644 (file)
@@ -137,6 +137,7 @@ struct conf_service *service_init(struct conf_server *server,
     service->charsets = 0;
 
     service->id = service_id ? nmem_strdup(nmem, service_id) : 0;
+
     // Setup a dictionary from server.
     service->dictionary = 0;
 
@@ -156,6 +157,8 @@ struct conf_service *service_init(struct conf_server *server,
             = nmem_malloc(nmem,
                           sizeof(struct conf_metadata) * service->num_metadata);
     service->num_sortkeys = num_sortkeys;
+
+    service->default_sort = nmem_strdup(nmem, "relevance");
     service->sortkeys = 0;
     if (service->num_sortkeys)
         service->sortkeys
@@ -629,6 +632,21 @@ static struct conf_service *service_create_static(struct conf_server *server,
             }
             xmlFree(rank_cluster);
         }
+        else if (!strcmp((const char *) n->name, "sort-default"))
+        {
+            char *default_sort = (char *) xmlGetProp(n, (xmlChar *) "field");
+
+            if (default_sort && strcmp(default_sort, "")) {
+                service->default_sort = nmem_strdup(service->nmem, default_sort);
+                yaz_log(YLOG_LOG, "service %d: default sort order configured to: %s", service_id, default_sort);
+            }
+            else
+            {
+                yaz_log(YLOG_FATAL, "default sort order is invalid: %s", default_sort);
+                return 0;
+            }
+            xmlFree(default_sort);
+        }
         else
         {
             yaz_log(YLOG_FATAL, "Bad element: %s", n->name);
index f3960b2..1cad37a 100644 (file)
@@ -117,6 +117,7 @@ struct conf_service
     int z3950_session_timeout;
     int z3950_operation_timeout;
     int rank_cluster;
+    char *default_sort;
 
     int ref_count;
     /* duplicated from conf_server */
index 4a817a2..c5401cf 100644 (file)
@@ -638,6 +638,9 @@ static void session_clear_set(struct session *se,
     se->sorted_results->position = position;
     se->sorted_results->next = 0;
 
+    session_log(se, YLOG_DEBUG, "clear_set session_sort: field=%s increasing=%d position=%d configured",
+                sort_field, increasing, position);
+
     se->reclist = reclist_create(se->nmem);
 }
 
@@ -651,7 +654,6 @@ void session_sort(struct session *se, const char *field, int increasing,
 
     yaz_log(YLOG_LOG, "session_sort field=%s increasing=%d position=%d", field, increasing, position);
     /* see if we already have sorted for this critieria */
-    /* TODO I do not see the point in saving all previous sorts. Dont we re-sort anyway ? */
     for (sr = se->sorted_results; sr; sr = sr->next)
     {
         if (!strcmp(field, sr->field) && increasing == sr->increasing && sr->position == position)
@@ -701,8 +703,7 @@ enum pazpar2_error_code session_search(struct session *se,
                                        const char *filter,
                                        const char *limit,
                                        const char **addinfo,
-                                       const char *sort_field,
-                                       int increasing)
+                                       struct reclist_sortparms *sp)
 {
     int live_channels = 0;
     int no_working = 0;
@@ -723,7 +724,7 @@ enum pazpar2_error_code session_search(struct session *se,
 
     session_enter(se);
     se->settings_modified = 0;
-    session_clear_set(se, sort_field, increasing, 0); /* hardcoded position */
+    session_clear_set(se, sp->name, sp->increasing, sp->type == Metadata_sortkey_position);
     relevance_destroy(&se->relevance);
 
     live_channels = select_targets(se, filter);
index ea2cb01..45fdbb3 100644 (file)
@@ -163,7 +163,7 @@ enum pazpar2_error_code session_search(struct session *s, const char *query,
                                        const char *maxrecs,
                                        const char *filter, const char *limit,
                                        const char **addinfo,
-                                       const char *sort_field, int increasing);
+                                       struct reclist_sortparms *sort_parm);
 struct record_cluster **show_range_start(struct session *s,
                                          struct reclist_sortparms *sp,
                                          int start,
index cb6a995..46d2c87 100644 (file)
@@ -1,4 +1,5 @@
 *.log
+*.log.xml
 *.dif
 Makefile
 Makefile.in
diff --git a/test/test-solr.xml b/test/test-solr.xml
new file mode 100644 (file)
index 0000000..e61a1e6
--- /dev/null
@@ -0,0 +1,1924 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<response>
+  <lst name="responseHeader">
+    <int name="status">0</int>
+    <int name="QTime">62</int>
+    <lst name="params">
+      <str name="facet">true</str>
+      <str name="fl">*,score</str>
+      <str name="facet.mincount">1</str>
+      <str name="start">20</str>
+      <str name="q">text:water</str>
+      <arr name="facet.field">
+        <str>date</str>
+        <str>medium_exact</str>
+        <str>subject_exact</str>
+        <str>author_exact</str>
+      </arr>
+      <str name="rows">20</str>
+    </lst>
+  </lst>
+  <result name="response" numFound="1995" start="20" maxScore="2.3047338">
+    <doc>
+      <float name="score">1.9282786</float>
+      <str name="author">Ravi, Rājeśa.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <arr name="description">
+        <str>On the effort of conserving rain water for drinking and harvesting; case study of selected villages in Rajasthan, India.</str>
+      </arr>
+      <arr name="edition">
+        <str>1. saṃskaraṇa.</str>
+      </arr>
+      <str name="id">   00371304 </str>
+      <str name="id_exact">   00371304 </str>
+      <arr name="lccn">
+        <str>   00371304 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>22 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>60 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill. ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Taruṇa Bhārata Saṅgha,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Alavara :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water harvesting</str>
+        <str>Rain-water</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water harvesting, India, Rajasthan.</str>
+        <str>Rain-water (Water-supply), India, Rajasthan.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water harvesting</str>
+        <str>Rain-water</str>
+        <str>Water-supply</str>
+      </arr>
+      <str name="title">Pahāṛa para pānī /</str>
+      <str name="title-complete">Pahāṛa para pānī /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">Rājeśa Ravi, Jineśa Jaina.</str>
+    </doc>
+    <doc>
+      <float name="score">1.9282786</float>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00394954 </str>
+      <str name="id_exact">   00394954 </str>
+      <arr name="isbn">
+        <str>9521105534</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00394954 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>30 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>43 p. ;</str>
+      </arr>
+      <arr name="physical-format">
+        <str/>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Edita,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Helsinki :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water quality management</str>
+        <str>Nutrient pollution of water</str>
+        <str>Eutrophication</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water quality management, Finland.</str>
+        <str>Water quality management, Government policy, Finland.</str>
+        <str>Nutrient pollution of water, Finland.</str>
+        <str>Eutrophication, Control, Finland.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water quality management</str>
+        <str>Nutrient pollution of water</str>
+        <str>Eutrophication</str>
+      </arr>
+      <str name="title">Water protection targets for the year 2005.</str>
+      <str name="title-complete">Water protection targets for the year 2005.</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility"/>
+      <str name="title-uniform">Målen för skydd av vattnen fram till år 2005.</str>
+      <str name="title-uniform-key"/>
+      <str name="title-uniform-media"/>
+      <str name="title-uniform-partname"/>
+      <str name="title-uniform-parts"/>
+    </doc>
+    <doc>
+      <float name="score">1.9282786</float>
+      <arr name="date">
+        <str>1998</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1998</str>
+      </arr>
+      <str name="id">   00410461 </str>
+      <str name="id_exact">   00410461 </str>
+      <arr name="isbn">
+        <str>9290903589</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00410461 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>v, 32 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., map ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c1998.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>International Water Management Institute,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Colombo, Sri Lanka :</str>
+      </arr>
+      <arr name="series-title">
+        <str>SWIM paper,</str>
+      </arr>
+      <arr name="subject">
+        <str>Water resources development</str>
+        <str>Water use</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water resources development.</str>
+        <str>Water use.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water resources development</str>
+        <str>Water use</str>
+      </arr>
+      <str name="title">Improving water utilization from a catchment perspective</str>
+      <str name="title-complete">Improving water utilization from a catchment perspective</str>
+      <str name="title-dates"/>
+      <str name="title-medium">[microform] /</str>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">Charles Batchelor ... [et al.].</str>
+    </doc>
+    <doc>
+      <float name="score">1.9282786</float>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00410463 </str>
+      <str name="id_exact">   00410463 </str>
+      <arr name="isbn">
+        <str>9290903767</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00410463 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>ix, 59 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill. ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>International Water Management Institute,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Colombo, Sri Lanka :</str>
+      </arr>
+      <arr name="series-title">
+        <str>SWIM paper,</str>
+      </arr>
+      <arr name="subject">
+        <str>Water resources development</str>
+        <str>Water quality management</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water resources development.</str>
+        <str>Water quality management.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water resources development</str>
+        <str>Water quality management</str>
+      </arr>
+      <str name="title">Modeling water resources management at the basin level</str>
+      <str name="title-complete">Modeling water resources management at the basin level review and future directions /</str>
+      <str name="title-dates"/>
+      <str name="title-medium">[microform] :</str>
+      <str name="title-number-section"/>
+      <str name="title-remainder">review and future directions /</str>
+      <str name="title-responsibility">Daene C. McKinney ... [et al.].</str>
+    </doc>
+    <doc>
+      <float name="score">1.9282786</float>
+      <str name="corporate-date"/>
+      <str name="corporate-location"/>
+      <str name="corporate-name">Boston Water Power Company.</str>
+      <arr name="date">
+        <str>1855</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1855</str>
+      </arr>
+      <str name="id">   00537021 </str>
+      <str name="id_exact">   00537021 </str>
+      <arr name="lccn">
+        <str>   00537021 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>23 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>24 p. ;</str>
+      </arr>
+      <arr name="physical-format">
+        <str/>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1855.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Printed by Dutton and Wentworth,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Boston :</str>
+      </arr>
+      <arr name="subject">
+        <str>Boston Water Power Company</str>
+        <str>Water-power</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Boston Water Power Company.</str>
+        <str>Water-power, Massachusetts, Boston.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Boston Water Power Company</str>
+        <str>Water-power</str>
+      </arr>
+      <str name="title">Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855.</str>
+      <str name="title-complete">Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855.</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility"/>
+    </doc>
+    <doc>
+      <float name="score">1.9131546</float>
+      <str name="author">Sherk, George William.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>2000</str>
+      </arr>
+      <arr name="date_exact">
+        <str>2000</str>
+      </arr>
+      <arr name="description">
+        <str>Includes index.</str>
+      </arr>
+      <str name="id">   00059311 </str>
+      <str name="id_exact">   00059311 </str>
+      <arr name="isbn">
+        <str>9041198199 (hardcover : alk. paper)</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00059311 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str/>
+      </arr>
+      <arr name="physical-extent">
+        <str>p. cm.</str>
+      </arr>
+      <arr name="physical-format">
+        <str/>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>2000.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Kluwer Law International,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Boston, MA :</str>
+      </arr>
+      <arr name="series-title">
+        <str>International and national water law and policy series ;</str>
+      </arr>
+      <arr name="subject">
+        <str>Water rights</str>
+        <str>Water resources development</str>
+        <str>Interstate agreements</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water rights, United States.</str>
+        <str>Water resources development, Law and legislation, United States.</str>
+        <str>Interstate agreements, United States.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water rights</str>
+        <str>Water resources development</str>
+        <str>Interstate agreements</str>
+      </arr>
+      <str name="title">Dividing the waters :</str>
+      <str name="title-complete">Dividing the waters : the resolution of interstate water conflicts in the United States /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">the resolution of interstate water conflicts in the United States /</str>
+      <str name="title-responsibility">by George William Sherk.</str>
+    </doc>
+    <doc>
+      <float name="score">1.9131546</float>
+      <str name="author">Faeth, Paul.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>2000</str>
+      </arr>
+      <arr name="date_exact">
+        <str>2000</str>
+      </arr>
+      <str name="id">   00104473 </str>
+      <str name="id_exact">   00104473 </str>
+      <arr name="isbn">
+        <str>1569731977</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00104473 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>26 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>viii, 50 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., map ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>2000.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>World Resources Institute,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Washington, DC :</str>
+      </arr>
+      <arr name="subject">
+        <str>Nutrient pollution of water</str>
+        <str>Water quality management</str>
+        <str>Water</str>
+        <str>Agricultural pollution</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Nutrient pollution of water, United States.</str>
+        <str>Water quality management, United States.</str>
+        <str>Water, Pollution, Environmental aspects, United States.</str>
+        <str>Water, Pollution, United States, Prevention.</str>
+        <str>Agricultural pollution, United States.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Nutrient pollution of water</str>
+        <str>Water quality management</str>
+        <str>Water</str>
+        <str>Agricultural pollution</str>
+      </arr>
+      <str name="title">Fertile ground :</str>
+      <str name="title-complete">Fertile ground : nutrient trading's potential to cost-effectively improve water quality /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">nutrient trading's potential to cost-effectively improve water quality /</str>
+      <str name="title-responsibility">Paul Faeth.</str>
+    </doc>
+    <doc>
+      <float name="score">1.9131546</float>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00265121 </str>
+      <str name="id_exact">   00265121 </str>
+      <arr name="isbn">
+        <str>1853126853</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00265121 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>24 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>588 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>WIT Press,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Southampton, UK ;</str>
+      </arr>
+      <arr name="series-title">
+        <str>International series on progress in water resources,</str>
+      </arr>
+      <arr name="subject">
+        <str>Water</str>
+        <str>Water quality management</str>
+        <str>Sewage</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water, Pollution, Congresses.</str>
+        <str>Water, Pollution, Mathematical models, Congresses.</str>
+        <str>Water, Pollution, Measurement, Congresses.</str>
+        <str>Water quality management, Congresses.</str>
+        <str>Sewage, Purification, Congresses.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water</str>
+        <str>Water quality management</str>
+        <str>Sewage</str>
+      </arr>
+      <str name="title">Water pollution V :</str>
+      <str name="title-complete">Water pollution V : modelling, measuring and prediction /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">modelling, measuring and prediction /</str>
+      <str name="title-responsibility">editors, C.A. Brebbia, P. Anagnostopoulos</str>
+    </doc>
+    <doc>
+      <float name="score">1.9131546</float>
+      <str name="author">Powell, J. M.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1998</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1998</str>
+      </arr>
+      <str name="id">   00340598 </str>
+      <str name="id_exact">   00340598 </str>
+      <arr name="isbn">
+        <str>0730974170</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00340598 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>30 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>100 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1998.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Water and Rivers Commission,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Perth, W.A. :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water resources development</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water resources development, Australia, Western Australia, History.</str>
+        <str>Water-supply, Australia, Western Australia.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water resources development</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>abn98297323</str>
+      </arr>
+      <str name="title">Watering the western third :</str>
+      <str name="title-complete">Watering the western third : water, land, and community in Western Australia, 1826-1998 /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">water, land, and community in Western Australia, 1826-1998 /</str>
+      <str name="title-responsibility">J.M. Powell.</str>
+    </doc>
+    <doc>
+      <float name="score">1.9131546</float>
+      <str name="author">Shade, Patricia J.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00689246 </str>
+      <str name="id_exact">   00689246 </str>
+      <arr name="lccn">
+        <str>   00689246 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>iv, 36 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>U.S. Dept. of the Interior, U.S. Geological Survey ;</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Honolulu, Hawaii :</str>
+      </arr>
+      <arr name="series-title">
+        <str>Water-resources investigations report ;</str>
+      </arr>
+      <arr name="subject">
+        <str>Water balance</str>
+        <str>Hydrology</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water balance (Hydrology), Hawaii, Maui.</str>
+        <str>Water-supply, Hawaii, Maui.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water balance</str>
+        <str>Hydrology</str>
+        <str>Water-supply</str>
+      </arr>
+      <str name="title">Water budget of East Maui, Hawaii /</str>
+      <str name="title-complete">Water budget of East Maui, Hawaii /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">by Patricia J. Shade : prepared in cooperation with the County of Maui Department of Water Supply, State of Hawaii Commission on Water Resource Management.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8935319</float>
+      <arr name="date">
+        <str>1997?</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1997?</str>
+      </arr>
+      <str name="id">   00371661 </str>
+      <str name="id_exact">   00371661 </str>
+      <arr name="lccn">
+        <str>   00371661 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <str name="meeting-date">(1997 :</str>
+      <str name="meeting-location">Madras, India)</str>
+      <str name="meeting-name">International Conference on Management of Drinking Water Resources</str>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>25 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>429 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>[1997?]</str>
+      </arr>
+      <arr name="publication-name">
+        <str>The Institute,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Chennai :</str>
+      </arr>
+      <arr name="subject">
+        <str>Drinking water</str>
+        <str>Water resources development</str>
+        <str>Water-supply</str>
+        <str>Water conservation</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Drinking water, India, Congresses.</str>
+        <str>Water resources development, India, Congresses.</str>
+        <str>Water-supply, India, Management, Congresses.</str>
+        <str>Water conservation, Government policy, India, Congresses.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Drinking water</str>
+        <str>Water resources development</str>
+        <str>Water-supply</str>
+        <str>Water conservation</str>
+      </arr>
+      <str name="title">International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 :</str>
+      <str name="title-complete">International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 : proceedings /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">proceedings /</str>
+      <str name="title-responsibility">organised by Central Leather Research Institute, Anna University, Tamil Nadu Water Supply and Drainage Board.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8935319</float>
+      <str name="author">Bauer, Steve.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <arr name="description">
+        <str>"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho."</str>
+      </arr>
+      <str name="id">   00457130 </str>
+      <str name="id_exact">   00457130 </str>
+      <arr name="lccn">
+        <str>   00457130 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>viii, 99 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>United States Environmental Protection Agency, Region 10 ;</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Seattle, WA :</str>
+      </arr>
+      <arr name="subject">
+        <str>United States</str>
+        <str>Indicators</str>
+        <str>Biology</str>
+        <str>Water quality management</str>
+        <str>Water quality</str>
+        <str>Water</str>
+      </arr>
+      <arr name="subject-long">
+        <str>United States., Federal Water Pollution Control Act.</str>
+        <str>Indicators (Biology)</str>
+        <str>Water quality management, United States.</str>
+        <str>Water quality, United States.</str>
+        <str>Water, Pollution, Law and legislation, United States.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>United States</str>
+        <str>Indicators</str>
+        <str>Biology</str>
+        <str>Water quality management</str>
+        <str>Water quality</str>
+        <str>Water</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>(OCoLC)ocm42633073</str>
+      </arr>
+      <str name="title">Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act /</str>
+      <str name="title-complete">Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">Stephen B. Bauer and Stephen C. Ralph.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8935319</float>
+      <str name="author">Farnham, Henry P.</str>
+      <str name="author-date">1863-1929.</str>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1904</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1904</str>
+      </arr>
+      <str name="id">   04012965 </str>
+      <str name="id_exact">   04012965 </str>
+      <arr name="lccn">
+        <str>   04012965 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>24 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>3 v. (clxxx, 2956 p.) ;</str>
+      </arr>
+      <arr name="physical-format">
+        <str/>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1904.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>The Lawyers Co-operative Publishing Company,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Rochester :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water rights</str>
+        <str>Riparian rights</str>
+        <str>Water</str>
+        <str>Irrigation laws</str>
+        <str>Drainage laws</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water rights, United States.</str>
+        <str>Riparian rights, United States.</str>
+        <str>Water, Law and legislation, United States.</str>
+        <str>Irrigation laws, United States.</str>
+        <str>Drainage laws, United States.</str>
+        <str>Water-supply.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water rights</str>
+        <str>Riparian rights</str>
+        <str>Water</str>
+        <str>Irrigation laws</str>
+        <str>Drainage laws</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>(OCoLC)507586</str>
+      </arr>
+      <str name="title">The law of waters and water rights :</str>
+      <str name="title-complete">The law of waters and water rights : international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply /</str>
+      <str name="title-responsibility">by Henry Philip Farnham.</str>
+    </doc>
+    <doc>
+      <float name="score">1.822052</float>
+      <arr name="date">
+        <str>2000</str>
+      </arr>
+      <arr name="date_exact">
+        <str>2000</str>
+      </arr>
+      <str name="id">   00108038 </str>
+      <str name="id_exact">   00108038 </str>
+      <arr name="lccn">
+        <str>   00108038 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>x, 240 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c2000.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>Pennsylvania Bar Institute,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>[Mechanicsburg, Pa.] :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water</str>
+        <str>Rivers</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water, Law and legislation, Pennsylvania.</str>
+        <str>Rivers, Law and legislation, Pennsylvania.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water</str>
+        <str>Rivers</str>
+      </arr>
+      <str name="title">Water law.</str>
+      <str name="title-complete">Water law.</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility"/>
+    </doc>
+    <doc>
+      <float name="score">1.822052</float>
+      <str name="corporate-date">(2000 :</str>
+      <str name="corporate-location">Miami, Fla.)</str>
+      <str name="corporate-name">American Water Resources Association.</str>
+      <arr name="date">
+        <str>2000</str>
+      </arr>
+      <arr name="date_exact">
+        <str>2000</str>
+      </arr>
+      <str name="id">   00131698 </str>
+      <str name="id_exact">   00131698 </str>
+      <arr name="isbn">
+        <str>1882132521</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00131698 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>xiii, 400 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c2000.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>The Association,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Middleburg, Va. :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water resources development</str>
+        <str>Coastal zone management</str>
+        <str>Water quality management</str>
+        <str>Water-supply</str>
+        <str>Urban hydrology</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water resources development, Congresses.</str>
+        <str>Coastal zone management, Congresses.</str>
+        <str>Water quality management, Congresses.</str>
+        <str>Water-supply, Congresses.</str>
+        <str>Urban hydrology, Congresses.</str>
+        <str>Water resources development, United States, Congresses.</str>
+        <str>Coastal zone management, United States, Congresses.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water resources development</str>
+        <str>Coastal zone management</str>
+        <str>Water quality management</str>
+        <str>Water-supply</str>
+        <str>Urban hydrology</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>(OCoLC)ocm45420923</str>
+      </arr>
+      <str name="title">Water quantity and quality issues in coastal urban areas :</str>
+      <str name="title-complete">Water quantity and quality issues in coastal urban areas : proceedings, American Water Resources Association's Annual Water Resources Conference : November 6-9, 2000, Miami Florida /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">proceedings, American Water Resources Association's Annual Water Resources Conference : November 6-9, 2000, Miami Florida /</str>
+      <str name="title-responsibility">edited by Robert W. Higgins ; sponsored by the American Water Resources Association ; hosted by the Florida Section, American Water Resources Association ; co-sponsored by CH2M Hill ... [et al.].</str>
+    </doc>
+    <doc>
+      <float name="score">1.822052</float>
+      <str name="author">Lee, Richard</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00265435  </str>
+      <str name="id_exact">   00265435  </str>
+      <arr name="isbn">
+        <str>0964981416</str>
+      </arr>
+      <arr name="lccn">
+        <str>   00265435  </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>23 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>iv, 331 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., map ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>c1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>W. Tricker,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Independence, Ohio :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water gardens</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water gardens, Miscellanea.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water gardens</str>
+      </arr>
+      <str name="title">Tricker's 1101 water gardening :</str>
+      <str name="title-complete">Tricker's 1101 water gardening : questions and answers /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder">questions and answers /</str>
+      <str name="title-responsibility">by Richard Lee.</str>
+    </doc>
+    <doc>
+      <float name="score">1.822052</float>
+      <str name="author">Rafiq, Abdul Qadir.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999?</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999?</str>
+      </arr>
+      <str name="id">   00283173 </str>
+      <str name="id_exact">   00283173 </str>
+      <arr name="lccn">
+        <str>   00283173 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>46 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>1 map ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>[1999?]</str>
+      </arr>
+      <arr name="publication-name">
+        <str>LEAD, Pakistan,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Islamabad :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water resources development</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water resources development, Pakistan.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water resources development</str>
+      </arr>
+      <str name="title">Institutions &amp; leadership in water resource management /</str>
+      <str name="title-complete">Institutions &amp; leadership in water resource management /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">Abdul Qadir Rafiq.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8129189</float>
+      <str name="author">Gingerich, Stephen B.</str>
+      <str name="author-date"/>
+      <str name="author-title"/>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <str name="id">   00300149 </str>
+      <str name="id_exact">   00300149 </str>
+      <arr name="lccn">
+        <str>   00300149 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>iv, 38 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill., maps ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>1999.</str>
+      </arr>
+      <arr name="publication-name">
+        <str>U.S. Dept. of the Interior, U.S. Geological Survey ;</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Honolulu, Hawaii :</str>
+      </arr>
+      <arr name="series-title">
+        <str>Water-resources investigations report ;</str>
+      </arr>
+      <arr name="subject">
+        <str>Water balance</str>
+        <str>Hydrology</str>
+        <str>Groundwater</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water balance (Hydrology), Hawaii, Haiku Region.</str>
+        <str>Groundwater, Hawaii, Haiku Region.</str>
+        <str>Water-supply, Hawaii, Haiku Region.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water balance</str>
+        <str>Hydrology</str>
+        <str>Groundwater</str>
+        <str>Water-supply</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>(OCoLC)ocm43421325</str>
+      </arr>
+      <str name="title">Ground water and surface water in the Haiku area, East Maui, Hawaii /</str>
+      <str name="title-complete">Ground water and surface water in the Haiku area, East Maui, Hawaii /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">by Stephen B. Gingerich ; prepared in cooperation with the County of Maui Department of Water Supply, State of Hawaii Commission on Water Resource Management.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8129189</float>
+      <str name="corporate-date"/>
+      <str name="corporate-location"/>
+      <str name="corporate-name">Texas Natural Resource Conservation Commission.</str>
+      <arr name="date">
+        <str>1999</str>
+      </arr>
+      <arr name="date_exact">
+        <str>1999</str>
+      </arr>
+      <arr name="description">
+        <str>"June 1999."</str>
+        <str>"GI-252"--Cover.</str>
+      </arr>
+      <str name="id">   00301741 </str>
+      <str name="id_exact">   00301741 </str>
+      <arr name="lccn">
+        <str>   00301741 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>1 v. (various pagings) :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill. ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>[1999]</str>
+      </arr>
+      <arr name="publication-name">
+        <str>The Commission,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Austin, TX :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water quality</str>
+        <str>Water</str>
+        <str>Water quality biological assessment</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water quality, Texas, Measurement, Handbooks, manuals, etc.</str>
+        <str>Water, Sampling, Texas, Handbooks, manuals, etc.</str>
+        <str>Water, Texas, Analysis, Handbooks, manuals, etc.</str>
+        <str>Water quality biological assessment, Texas, Handbooks, manuals, etc.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water quality</str>
+        <str>Water</str>
+        <str>Water quality biological assessment</str>
+      </arr>
+      <arr name="system-control-nr">
+        <str>(OCoLC)ocm43074299</str>
+      </arr>
+      <str name="title">Surface water quality monitoring procedures manual /</str>
+      <str name="title-complete">Surface water quality monitoring procedures manual /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">prepared by the Surface Water Quality Monitoring Program, Water Quality Division, Texas Natural Resource Conservation Commission.</str>
+    </doc>
+    <doc>
+      <float name="score">1.8129189</float>
+      <arr name="date">
+        <str>2000</str>
+      </arr>
+      <arr name="date_exact">
+        <str>2000</str>
+      </arr>
+      <arr name="description">
+        <str>"May 2000."</str>
+        <str>"EPA/600/R-00/025."</str>
+        <str>"EPA Contract 68-C7-0011, work assignment 0-38."</str>
+      </arr>
+      <str name="id">   00326482 </str>
+      <str name="id_exact">   00326482 </str>
+      <arr name="lccn">
+        <str>   00326482 </str>
+      </arr>
+      <arr name="medium">
+        <str>book</str>
+      </arr>
+      <arr name="medium_exact">
+        <str>book</str>
+      </arr>
+      <arr name="physical-accomp">
+        <str/>
+      </arr>
+      <arr name="physical-dimensions">
+        <str>28 cm.</str>
+      </arr>
+      <arr name="physical-extent">
+        <str>ix, 38 p. :</str>
+      </arr>
+      <arr name="physical-format">
+        <str>ill. ;</str>
+      </arr>
+      <arr name="physical-specified">
+        <str/>
+      </arr>
+      <arr name="physical-unitsize">
+        <str/>
+      </arr>
+      <arr name="physical-unittype">
+        <str/>
+      </arr>
+      <arr name="publication-date">
+        <str>[2000]</str>
+      </arr>
+      <arr name="publication-name">
+        <str>National Risk Management Research Laboratory, Office of Research and Development, U.S. Environmental Protection Agency,</str>
+      </arr>
+      <arr name="publication-place">
+        <str>Cincinnati, OH :</str>
+      </arr>
+      <arr name="subject">
+        <str>Water</str>
+        <str>Water treatment plant residuals</str>
+        <str>Water treatment plants</str>
+        <str>Drinking water</str>
+      </arr>
+      <arr name="subject-long">
+        <str>Water, Purification, Arsenic removal.</str>
+        <str>Water treatment plant residuals, Management.</str>
+        <str>Water treatment plants, Waste disposal.</str>
+        <str>Water, Pollution, Law and legislation, United States.</str>
+        <str>Drinking water, Law and legislation, United States.</str>
+      </arr>
+      <arr name="subject_exact">
+        <str>Water</str>
+        <str>Water treatment plant residuals</str>
+        <str>Water treatment plants</str>
+        <str>Drinking water</str>
+      </arr>
+      <str name="title">Regulations on the disposal of arsenic residuals from drinking water treatment plants /</str>
+      <str name="title-complete">Regulations on the disposal of arsenic residuals from drinking water treatment plants /</str>
+      <str name="title-dates"/>
+      <str name="title-medium"/>
+      <str name="title-number-section"/>
+      <str name="title-remainder"/>
+      <str name="title-responsibility">by Science Applications International Corporation, Reston, Virginia ; work assignment manager, Thomas J. Sorg.</str>
+    </doc>
+  </result>
+  <lst name="facet_counts">
+    <lst name="facet_queries"/>
+    <lst name="facet_fields">
+      <lst name="date">
+        <int name="2000">411</int>
+        <int name="1999">318</int>
+        <int name="1998">90</int>
+        <int name="2001">87</int>
+        <int name="1907">50</int>
+        <int name="1902">46</int>
+        <int name="1906">43</int>
+        <int name="1905">39</int>
+        <int name="1909">39</int>
+        <int name="1904">36</int>
+        <int name="1997">35</int>
+        <int name="1908">33</int>
+        <int name="1996">32</int>
+        <int name="1903">30</int>
+        <int name="1901">29</int>
+        <int name="1897">28</int>
+        <int name="1896">21</int>
+        <int name="1881">17</int>
+        <int name="1891">16</int>
+        <int name="1899">16</int>
+        <int name="1900">16</int>
+        <int name="1910">15</int>
+        <int name="1880">14</int>
+        <int name="1883">14</int>
+        <int name="1889">14</int>
+        <int name="1894">14</int>
+        <int name="1895">14</int>
+        <int name="1885">13</int>
+        <int name="1884">12</int>
+        <int name="1886">12</int>
+        <int name="1887">12</int>
+        <int name="1893">12</int>
+        <int name="1898">12</int>
+        <int name="1875">11</int>
+        <int name="1892">11</int>
+        <int name="1995">11</int>
+        <int name="1845">10</int>
+        <int name="1872">10</int>
+        <int name="1877">10</int>
+        <int name="1890">10</int>
+        <int name="1854">9</int>
+        <int name="1874">9</int>
+        <int name="1888">9</int>
+        <int name="1992">9</int>
+        <int name="1858">8</int>
+        <int name="1860">8</int>
+        <int name="1878">8</int>
+        <int name="1994">8</int>
+        <int name="1799">7</int>
+        <int name="1846">7</int>
+        <int name="1851">7</int>
+        <int name="1869">7</int>
+        <int name="1990">7</int>
+        <int name="1836">6</int>
+        <int name="1837">6</int>
+        <int name="1844">6</int>
+        <int name="1855">6</int>
+        <int name="1868">6</int>
+        <int name="1870">6</int>
+        <int name="1873">6</int>
+        <int name="2002">6</int>
+        <int name="1788">5</int>
+        <int name="1835">5</int>
+        <int name="1853">5</int>
+        <int name="1861">5</int>
+        <int name="1866">5</int>
+        <int name="1879">5</int>
+        <int name="1882">5</int>
+        <int name="1984">5</int>
+        <int name="1993">5</int>
+        <int name="1840">4</int>
+        <int name="1852">4</int>
+        <int name="1859">4</int>
+        <int name="1867">4</int>
+        <int name="1871">4</int>
+        <int name="1876">4</int>
+        <int name="1983">4</int>
+        <int name="1985">4</int>
+        <int name="19961999">4</int>
+        <int name="19992000">4</int>
+        <int name="1811">3</int>
+        <int name="1823">3</int>
+        <int name="1834">3</int>
+        <int name="1838">3</int>
+        <int name="1839">3</int>
+        <int name="1842">3</int>
+        <int name="1850">3</int>
+        <int name="1856">3</int>
+        <int name="1863">3</int>
+        <int name="1864">3</int>
+        <int name="1865">3</int>
+        <int name="199">3</int>
+        <int name="1991">3</int>
+        <int name="03">2</int>
+        <int name="1792">2</int>
+        <int name="1794">2</int>
+        <int name="1795">2</int>
+        <int name="1801">2</int>
+        <int name="1805">2</int>
+        <int name="1810">2</int>
+      </lst>
+      <lst name="medium_exact">
+        <int name="book">1984</int>
+        <int name="web">8</int>
+        <int name="book (electronic)">3</int>
+      </lst>
+      <lst name="subject_exact">
+        <int name="Water-supply">185</int>
+        <int name="Water">169</int>
+        <int name="Groundwater">94</int>
+        <int name="Water resources development">93</int>
+        <int name="Water quality">87</int>
+        <int name="Mineral waters">52</int>
+        <int name="Water quality management">50</int>
+        <int name="United States">43</int>
+        <int name="Irrigation">33</int>
+        <int name="N.Y.">28</int>
+        <int name="Hydraulic engineering">24</int>
+        <int name="Geology">23</int>
+        <int name="U.S.">23</int>
+        <int name="Groundwater flow">22</int>
+        <int name="Birds">21</int>
+        <int name="Hydrology">21</int>
+        <int name="Water rights">21</int>
+        <int name="American">20</int>
+        <int name="Drinking water">19</int>
+        <int name="Hydrogeology">19</int>
+        <int name="Water supply">18</int>
+        <int name="England">17</int>
+        <int name="Water use">17</int>
+        <int name="Fishes">16</int>
+        <int name="Love stories">16</int>
+        <int name="Rural">16</int>
+        <int name="Stream measurements">16</int>
+        <int name="Territorial waters">16</int>
+        <int name="Water quality biological assessment">16</int>
+        <int name="Water-supply engineering">16</int>
+        <int name="Christian fiction">15</int>
+        <int name="Domestic fiction">15</int>
+        <int name="Hydrotherapy">15</int>
+        <int name="Water conservation">15</int>
+        <int name="Great Britain">14</int>
+        <int name="Land use">14</int>
+        <int name="Mass.">14</int>
+        <int name="Nutrient pollution of water">14</int>
+        <int name="Floods">13</int>
+        <int name="Health resorts">13</int>
+        <int name="New York">13</int>
+        <int name="Streamflow">13</int>
+        <int name="Watershed management">13</int>
+        <int name="Sewage">12</int>
+        <int name="Water-power">12</int>
+        <int name="Ill.">11</int>
+        <int name="Indians of North America">11</int>
+        <int name="Inland navigation">11</int>
+        <int name="Italy">11</int>
+        <int name="Natural history">11</int>
+        <int name="Soils">11</int>
+        <int name="Water table">11</int>
+        <int name="Watercolor painting">11</int>
+        <int name="Aquifers">10</int>
+        <int name="Canals">10</int>
+        <int name="Hot-water heating">10</int>
+        <int name="Nitrates">10</int>
+        <int name="Psychological fiction">10</int>
+        <int name="Sanitation">10</int>
+        <int name="Chemistry">9</int>
+        <int name="Hydroelectric power plants">9</int>
+        <int name="Mississippi River Valley">9</int>
+        <int name="Radioactive pollution of water">9</int>
+        <int name="Rivers">9</int>
+        <int name="Science">9</int>
+        <int name="1939-1945">8</int>
+        <int name="Calif.">8</int>
+        <int name="California">8</int>
+        <int name="Canada">8</int>
+        <int name="Christian life">8</int>
+        <int name="Dams">8</int>
+        <int name="Harbors">8</int>
+        <int name="Historical fiction">8</int>
+        <int name="Inland water transportation">8</int>
+        <int name="Ipswich">8</int>
+        <int name="Irrigation laws">8</int>
+        <int name="Mississippi River">8</int>
+        <int name="Nonpoint source pollution">8</int>
+        <int name="Ohio River">8</int>
+        <int name="Psychology">8</int>
+        <int name="Sewerage">8</int>
+        <int name="Steam-boilers">8</int>
+        <int name="Water birds">8</int>
+        <int name="Water mills">8</int>
+        <int name="Watersheds">8</int>
+        <int name="World War">8</int>
+        <int name="Agriculture">7</int>
+        <int name="Biology">7</int>
+        <int name="Biotic communities">7</int>
+        <int name="Contaminated sediments">7</int>
+        <int name="Ecology">7</int>
+        <int name="Heating">7</int>
+        <int name="Hydraulics">7</int>
+        <int name="Indicators">7</int>
+        <int name="John">7</int>
+        <int name="Pesticides">7</int>
+        <int name="Stratigraphic">7</int>
+        <int name="W">7</int>
+        <int name="Washington">7</int>
+        <int name="Women">7</int>
+      </lst>
+      <lst name="author_exact">
+        <int name="Waters, Clara Erskine Clement,">9</int>
+        <int name="Waters, Henry F.">8</int>
+        <int name="Moorman, J. J.">7</int>
+        <int name="Waters, Thomas Franklin,">6</int>
+        <int name="Basak, P.">5</int>
+        <int name="Bergren, Lisa Tawn.">5</int>
+        <int name="Kingsley, Charles,">5</int>
+        <int name="Tyndall, John,">5</int>
+        <int name="Baldwin, William J.">4</int>
+        <int name="Holme, Charles,">4</int>
+        <int name="James, E. J.">4</int>
+        <int name="Nuttall, Thomas,">4</int>
+        <int name="Walton, George Edward,">4</int>
+        <int name="Wilkins, John H.">4</int>
+        <int name="Arthur, Kay,">3</int>
+        <int name="Byrd, Sandra.">3</int>
+        <int name="Conclin, George.">3</int>
+        <int name="Eliot, George,">3</int>
+        <int name="Emerson, James,">3</int>
+        <int name="Folwell, Amory Prescott,">3</int>
+        <int name="Frizell, Joseph P.">3</int>
+        <int name="Jones, Annie,">3</int>
+        <int name="Leverett, Frank,">3</int>
+        <int name="Mills, Robert,">3</int>
+        <int name="Pushpangadan, K.">3</int>
+        <int name="Rumsey, James,">3</int>
+        <int name="Spearman, Frank H.">3</int>
+        <int name="Spellman, Frank R.">3</int>
+        <int name="Towne, Douglas Clark,">3</int>
+        <int name="Turneaure, F. E.">3</int>
+        <int name="Waters, Robert Edmond Chester,">3</int>
+        <int name="Waters, Robert,">3</int>
+        <int name="Alcorn, Randy C.">2</int>
+        <int name="Ambrose, David,">2</int>
+        <int name="Baker, M. N.">2</int>
+        <int name="Baldwin, Loammi,">2</int>
+        <int name="Balsillie, James H.">2</int>
+        <int name="Baruch, Simon,">2</int>
+        <int name="Bergman, Torbern,">2</int>
+        <int name="Boyd, Nathan E.">2</int>
+        <int name="Browning, Elizabeth Barrett,">2</int>
+        <int name="Bryant, William Cullen,">2</int>
+        <int name="Chase, Eliza B.">2</int>
+        <int name="Chatterjee, S.">2</int>
+        <int name="Christensen, Victoria G.">2</int>
+        <int name="Cloud, Marshall Morgan,">2</int>
+        <int name="Cramer, Zadok,">2</int>
+        <int name="Cundall, H. M.">2</int>
+        <int name="Cunliffe-Owen, Marguerite,">2</int>
+        <int name="Dawson, Charles C.">2</int>
+        <int name="Ellet, Charles,">2</int>
+        <int name="Elliott, John G.">2</int>
+        <int name="Fairchild, Herman L.">2</int>
+        <int name="Fanning, John Thomas,">2</int>
+        <int name="Fatherree, Jim.">2</int>
+        <int name="Garbarino, John R.">2</int>
+        <int name="Gingerich, Stephen B.">2</int>
+        <int name="Gordon, J. D.">2</int>
+        <int name="Hale, Edward Everett,">2</int>
+        <int name="Halliwell-Phillipps, J. O.">2</int>
+        <int name="Harland, Marion,">2</int>
+        <int name="Hazen, Allen,">2</int>
+        <int name="Hazlehurst, James Nisbit.">2</int>
+        <int name="Howells, William Dean,">2</int>
+        <int name="Jacobson, Cliff.">2</int>
+        <int name="Johnson, Emory Richard,">2</int>
+        <int name="Jones, Harry Clary,">2</int>
+        <int name="Jordan, David Starr,">2</int>
+        <int name="Kennedy, Laurie E.">2</int>
+        <int name="King, Thomas,">2</int>
+        <int name="Laffan, William M.">2</int>
+        <int name="Lawlor, Sean M.">2</int>
+        <int name="Leffmann, Henry,">2</int>
+        <int name="Lorimer, Norma,">2</int>
+        <int name="Magner, D.">2</int>
+        <int name="Mahan, A. T.">2</int>
+        <int name="Mansfield, Robert Blachford,">2</int>
+        <int name="Mason, William Pitt,">2</int>
+        <int name="Mathews, F. Schuyler">2</int>
+        <int name="Molina Bedoya, Felipe,">2</int>
+        <int name="Moon, James H.,">2</int>
+        <int name="Nazimuddin, M.">2</int>
+        <int name="Nissen, Hartvig,">2</int>
+        <int name="O'Neil, Patrick E.">2</int>
+        <int name="Orcutt, Jane.">2</int>
+        <int name="Ott, A. G.">2</int>
+        <int name="Page, Jason.">2</int>
+        <int name="Parkhurst, H. E.">2</int>
+        <int name="Patterson, Kevin,">2</int>
+        <int name="Paul, Don S.">2</int>
+        <int name="Preston, H. W.">2</int>
+        <int name="Rafter, Geo. W.">2</int>
+        <int name="Richards, Ellen H.">2</int>
+        <int name="Richardson, C. J.">2</int>
+        <int name="Roosevelt, Robert Barnwell,">2</int>
+        <int name="Smeaton, John,">2</int>
+        <int name="Smith, Matthew Hale,">2</int>
+        <int name="Soler-López, Luis R.">2</int>
+        <int name="Vail, Isaac Newton,">2</int>
+        <int name="Waters, W. G.">2</int>
+      </lst>
+    </lst>
+    <lst name="facet_dates"/>
+  </lst>
+</response>
index 74f0fc8..75e5096 100644 (file)
@@ -29,6 +29,9 @@
       <metadata name="test-usersetting" brief="yes" setting="postproc"/>
       <metadata name="test" setting="parameter"/>
       <metadata name="test-usersetting-2" brief="yes"/>      
+      <rank cluster="no"/>
+      <sort-default field="position:1" />
+
     </service>
 
   </server>
index 7a0baea..ec1d55b 100644 (file)
@@ -7,6 +7,38 @@
 <num>20</num>
 <hit>
 
+<md-title>Water management problems and challenges in India</md-title>
+<md-title-remainder>an analytical review</md-title-remainder>
+<md-date>2000</md-date>
+<md-author>Dinesh Kumar, M</md-author>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1554355631">
+<md-title>Water management problems and challenges in India</md-title>
+<md-title-remainder>an analytical review</md-title-remainder>
+<md-date>2000</md-date>
+<md-author>Dinesh Kumar, M</md-author>
+<md-medium>book</md-medium>
+<md-score>2.3047338</md-score></location>
+<recid>content: title water management problems and challenges in india author dinesh kumar m medium book</recid>
+</hit>
+<hit>
+
+<md-title>The magic of water</md-title>
+<md-title-remainder>reflection and transparency at the water&apos;s edge</md-title-remainder>
+<md-date>2000</md-date>
+<md-author>Hochschwender, Ted</md-author>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3168968100">
+<md-title>The magic of water</md-title>
+<md-title-remainder>reflection and transparency at the water&apos;s edge</md-title-remainder>
+<md-date>2000</md-date>
+<md-author>Hochschwender, Ted</md-author>
+<md-medium>book</md-medium>
+<md-score>2.2315488</md-score></location>
+<recid>content: title the magic of water author hochschwender ted medium book</recid>
+</hit>
+<hit>
+
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-author>De Villiers, Marq</md-author>
 <md-medium>book</md-medium>
 <md-score>2.1864624</md-score></location>
-<relevance>34851</relevance>
 <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
 
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
+<md-title>Water use for public water supply in Michigan, 1998</md-title>
+<md-date>2000</md-date>
+<md-description>&quot;January 3, 2000.&quot;</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
+ name="LOC Solr Test" checksum="2103225742">
+<md-title>Water use for public water supply in Michigan, 1998</md-title>
+<md-date>2000</md-date>
+<md-description>&quot;January 3, 2000.&quot;</md-description>
 <md-medium>book</md-medium>
-<md-score>1.7852391</md-score></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
+<md-score>2.1864624</md-score></location>
+<recid>content: title water use for public water supply in michigan medium book</recid>
+</hit>
+<hit>
+
+<md-title>Report to the IUCN on water demand management country study</md-title>
+<md-title-remainder>Namibia</md-title-remainder>
+<md-date>1999</md-date>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3717838211">
+<md-title>Report to the IUCN on water demand management country study</md-title>
+<md-title-remainder>Namibia</md-title-remainder>
+<md-date>1999</md-date>
 <md-medium>book</md-medium>
-<md-score>1.7852391</md-score></location>
-<count>2</count>
-<relevance>32470</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+<md-score>2.115072</md-score></location>
+<recid>content: title report to the iucn on water demand management country study medium book</recid>
 </hit>
 <hit>
 
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
 <md-medium>book</md-medium>
 <md-score>2.0614164</md-score></location>
-<relevance>30305</relevance>
 <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
 
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium>
-<md-score>1.8037393</md-score></location>
-<relevance>27753</relevance>
-<recid>content: title water author grant pamela medium book</recid>
-</hit>
-<hit>
-
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium>
 <md-score>2.0614164</md-score></location>
-<relevance>27274</relevance>
 <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
 
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
+<md-title>Evaluation and control of water pollution in Bhavani Basin</md-title>
+<md-title-remainder>final report</md-title-remainder>
+<md-date>1998</md-date>
+<md-description>&quot;Funded by Institute for water Studies, Water Resources Organisation (PWD).&quot;</md-description>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="4266708322">
+<md-title>Evaluation and control of water pollution in Bhavani Basin</md-title>
+<md-title-remainder>final report</md-title-remainder>
+<md-date>1998</md-date>
+<md-description>&quot;Funded by Institute for water Studies, Water Resources Organisation (PWD).&quot;</md-description>
+<md-description>With reference to India</md-description>
+<md-medium>book</md-medium>
+<md-score>2.0614164</md-score></location>
+<recid>content: title evaluation and control of water pollution in bhavani basin medium book</recid>
+</hit>
+<hit>
+
+<md-title>UNSIA Water Cluster</md-title>
+<md-title-remainder>priorities and strategies for water in Africa</md-title-remainder>
 <md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+<md-description>&quot;United Nations System-wide Initiative on Africa (UNSIA).&quot;</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
+ name="LOC Solr Test" checksum="1586353495">
+<md-title>UNSIA Water Cluster</md-title>
+<md-title-remainder>priorities and strategies for water in Africa</md-title-remainder>
 <md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
+<md-description>&quot;United Nations System-wide Initiative on Africa (UNSIA).&quot;</md-description>
 <md-medium>book</md-medium>
-<md-score>2.016642</md-score></location>
-<relevance>26365</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+<md-score>2.0614164</md-score></location>
+<recid>content: title unsia water cluster medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water technology management</md-title>
+<md-date>2001</md-date>
+<md-description>Collection of articles with reference to India</md-description>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
+<md-title>Water technology management</md-title>
+<md-date>2001</md-date>
+<md-description>Collection of articles with reference to India</md-description>
+<md-medium>book</md-medium>
+<md-score>2.0614164</md-score></location>
+<recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
 
 <md-author>Thresh, John Clough</md-author>
 <md-medium>book</md-medium>
 <md-score>2.0614164</md-score></location>
-<relevance>22729</relevance>
 <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
 
+<md-title>Wonderful water</md-title>
+<md-date>2001</md-date>
+<md-author>Glover, David</md-author>
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2135223606">
+<md-title>Wonderful water</md-title>
+<md-date>2001</md-date>
+<md-author>Glover, David</md-author>
+<md-medium>book</md-medium>
+<md-score>2.037116</md-score></location>
+<recid>content: title wonderful water author glover david medium book</recid>
+</hit>
+<hit>
+
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
 <md-medium>book</md-medium>
 <md-score>2.016642</md-score></location>
 <count>2</count>
-<relevance>22729</relevance>
 <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
 
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium>
-<md-score>1.7852391</md-score></location>
-<relevance>22729</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
-</hit>
-<hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
+<md-title>A Primer on fresh water</md-title>
+<md-title-remainder>questions and answers</md-title-remainder>
+<md-date>2000</md-date>
+<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
+ name="LOC Solr Test" checksum="2684093717">
+<md-title>A Primer on fresh water</md-title>
+<md-title-remainder>questions and answers</md-title-remainder>
+<md-date>2000</md-date>
+<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+<md-description>Includes index</md-description>
 <md-medium>book</md-medium>
-<md-score>1.8935319</md-score></location>
-<relevance>21946</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+<md-score>2.016642</md-score></location>
+<recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
 
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
+<md-title>Who governs water?</md-title>
+<md-title-remainder>the politics of water resource management</md-title-remainder>
+<md-date>1999</md-date>
+<md-author>Frey, Hans</md-author>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+ name="LOC Solr Test" checksum="3738890">
+<md-title>Who governs water?</md-title>
+<md-title-remainder>the politics of water resource management</md-title-remainder>
 <md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium>
-<md-score>1.6872437</md-score></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
+<md-author>Frey, Hans</md-author>
 <md-medium>book</md-medium>
 <md-score>1.9282786</md-score></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water in press medium book</recid>
-</hit>
-<hit>
-
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1900-1901</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-description>Original imprint 1901, corrected to 1900</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2322304367">
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1901</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-medium>book</md-medium>
-<md-score>1.4576416</md-score></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="707691898">
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1900</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-description>Original imprint 1901, corrected to 1900</md-description>
-<md-medium>book</md-medium>
-<md-score>1.4576416</md-score></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water power author frizell joseph p medium book</recid>
+<recid>content: title who governs water author frey hans medium book</recid>
 </hit>
 <hit>
 
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1903-1909</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
+<md-title>1999 wastewater and drinking water user charge survey</md-title>
+<md-date>1999</md-date>
+<md-description>&quot;December, 1999.&quot;</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3196059541">
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1909</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
-<md-medium>book</md-medium>
-<md-score>1.5620842</md-score></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1000579097">
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1903</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
+ name="LOC Solr Test" checksum="1618351359">
+<md-title>1999 wastewater and drinking water user charge survey</md-title>
+<md-date>1999</md-date>
+<md-description>Cover title</md-description>
+<md-description>&quot;December, 1999.&quot;</md-description>
 <md-medium>book</md-medium>
-<md-score>1.5620842</md-score></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water supply engineering author folwell amory prescott medium book</recid>
+<md-score>1.9282786</md-score></location>
+<recid>content: title wastewater and drinking water user charge survey medium book</recid>
 </hit>
 <hit>
 
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+<md-title>Proposition 13</md-title>
+<md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
 <md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+<md-description>&quot;March 2000.&quot;</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ name="LOC Solr Test" checksum="3232963828">
+<md-title>Proposition 13</md-title>
+<md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
 <md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium>
-<md-score>1.8129189</md-score></location>
-<relevance>20456</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
-</hit>
-<hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+<md-description>&quot;March 2000.&quot;</md-description>
 <md-medium>book</md-medium>
-<md-score>1.6398468</md-score></location>
-<relevance>19800</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+<md-score>1.9282786</md-score></location>
+<recid>content: title proposition medium book</recid>
 </hit>
 <hit>
 
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
+<md-title>District water supply plan</md-title>
+<md-date>2000</md-date>
+<md-description>[1] [No special title] -- [2] Appendixes</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
+ name="LOC Solr Test" checksum="552609001">
+<md-title>District water supply plan</md-title>
+<md-date>2000</md-date>
+<md-description>[1] [No special title] -- [2] Appendixes</md-description>
 <md-medium>book</md-medium>
-<md-score>2.0614164</md-score></location>
-<relevance>19698</relevance>
-<recid>content: title water technology management medium book</recid>
+<md-score>1.9282786</md-score></location>
+<recid>content: title district water supply plan medium book</recid>
 </hit>
 <hit>
 
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+<md-title>Water, in press, 1998</md-title>
+<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+<md-date>1998-1999</md-date>
+<md-description>With reference to India</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ name="LOC Solr Test" checksum="1325464160">
+<md-title>Water, in press, 1998</md-title>
+<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+<md-description>Includes index</md-description>
 <md-medium>book</md-medium>
-<md-score>1.8935319</md-score></location>
-<relevance>19525</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
-</hit>
-<hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
+<md-score>1.6872437</md-score></location>
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
+<md-title>Water in press, 1997</md-title>
+<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+<md-date>1998</md-date>
+<md-description>Includes index</md-description>
+<md-description>With reference to India</md-description>
 <md-medium>book</md-medium>
-<md-score>1.7285503</md-score></location>
-<relevance>19395</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+<md-score>1.9282786</md-score></location>
+<count>2</count>
+<recid>content: title water in press medium book</recid>
 </hit>
 <hit>
 
-<md-title>Surface water quality monitoring procedures manual</md-title>
+<md-title>Pahāṛa para pānī</md-title>
 <md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
+<md-author>Ravi, Rājeśa</md-author>
+<md-description>On the effort of conserving rain water for drinking and harvesting; case study of selected villages in Rajasthan, India</md-description>
 <md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
+ name="LOC Solr Test" checksum="3781833939">
+<md-title>Pahāṛa para pānī</md-title>
 <md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
+<md-author>Ravi, Rājeśa</md-author>
+<md-description>On the effort of conserving rain water for drinking and harvesting; case study of selected villages in Rajasthan, India</md-description>
 <md-medium>book</md-medium>
-<md-score>1.8129189</md-score></location>
-<relevance>18940</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
-</hit>
-<hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium>
-<md-score>1.8935319</md-score></location>
-<relevance>18486</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+<md-score>1.9282786</md-score></location>
+<recid>content: title paha r a para pa ni author ravi ra jes a medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 294fe36..7148540 100644 (file)
 </term>
 </list>
 <list name="subject">
-<term><name>Water-supply</name><frequency>185</frequency></term>
-<term><name>Water</name><frequency>169</frequency></term>
-<term><name>Groundwater</name><frequency>94</frequency></term>
-<term><name>Water resources development</name><frequency>93</frequency></term>
-<term><name>Water quality</name><frequency>87</frequency></term>
-<term><name>Mineral waters</name><frequency>52</frequency></term>
-<term><name>Water quality management</name><frequency>50</frequency></term>
-<term><name>United States</name><frequency>43</frequency></term>
-<term><name>Irrigation</name><frequency>33</frequency></term>
-<term><name>N.Y</name><frequency>28</frequency></term>
-<term><name>Hydraulic engineering</name><frequency>24</frequency></term>
-<term><name>Geology</name><frequency>23</frequency></term>
-<term><name>U.S</name><frequency>23</frequency></term>
-<term><name>Groundwater flow</name><frequency>22</frequency></term>
-<term><name>Birds</name><frequency>21</frequency></term>
+<term><name>Water-supply</name><frequency>370</frequency></term>
+<term><name>Water</name><frequency>338</frequency></term>
+<term><name>Groundwater</name><frequency>188</frequency></term>
+<term><name>Water resources development</name><frequency>186</frequency></term>
+<term><name>Water quality</name><frequency>174</frequency></term>
+<term><name>Mineral waters</name><frequency>104</frequency></term>
+<term><name>Water quality management</name><frequency>100</frequency></term>
+<term><name>United States</name><frequency>86</frequency></term>
+<term><name>Irrigation</name><frequency>66</frequency></term>
+<term><name>N.Y</name><frequency>56</frequency></term>
+<term><name>Hydraulic engineering</name><frequency>48</frequency></term>
+<term><name>Geology</name><frequency>46</frequency></term>
+<term><name>U.S</name><frequency>46</frequency></term>
+<term><name>Groundwater flow</name><frequency>44</frequency></term>
+<term><name>Birds</name><frequency>42</frequency></term>
 </list>
 <list name="author">
-<term><name>Waters, Clara Erskine Clement</name><frequency>9</frequency></term>
-<term><name>Waters, Henry F</name><frequency>8</frequency></term>
-<term><name>Moorman, J. J</name><frequency>7</frequency></term>
-<term><name>Waters, Thomas Franklin</name><frequency>6</frequency></term>
-<term><name>Basak, P</name><frequency>5</frequency></term>
-<term><name>Bergren, Lisa Tawn</name><frequency>5</frequency></term>
-<term><name>Kingsley, Charles</name><frequency>5</frequency></term>
-<term><name>Tyndall, John</name><frequency>5</frequency></term>
-<term><name>Baldwin, William J</name><frequency>4</frequency></term>
-<term><name>Holme, Charles</name><frequency>4</frequency></term>
-<term><name>James, E. J</name><frequency>4</frequency></term>
-<term><name>Nuttall, Thomas</name><frequency>4</frequency></term>
-<term><name>Walton, George Edward</name><frequency>4</frequency></term>
-<term><name>Wilkins, John H</name><frequency>4</frequency></term>
-<term><name>Arthur, Kay</name><frequency>3</frequency></term>
+<term><name>Waters, Clara Erskine Clement</name><frequency>18</frequency></term>
+<term><name>Waters, Henry F</name><frequency>16</frequency></term>
+<term><name>Moorman, J. J</name><frequency>14</frequency></term>
+<term><name>Waters, Thomas Franklin</name><frequency>12</frequency></term>
+<term><name>Basak, P</name><frequency>10</frequency></term>
+<term><name>Bergren, Lisa Tawn</name><frequency>10</frequency></term>
+<term><name>Kingsley, Charles</name><frequency>10</frequency></term>
+<term><name>Tyndall, John</name><frequency>10</frequency></term>
+<term><name>Baldwin, William J</name><frequency>8</frequency></term>
+<term><name>Holme, Charles</name><frequency>8</frequency></term>
+<term><name>James, E. J</name><frequency>8</frequency></term>
+<term><name>Nuttall, Thomas</name><frequency>8</frequency></term>
+<term><name>Walton, George Edward</name><frequency>8</frequency></term>
+<term><name>Wilkins, John H</name><frequency>8</frequency></term>
+<term><name>Arthur, Kay</name><frequency>6</frequency></term>
 </list>
 <list name="date">
-<term><name>2000</name><frequency>411</frequency></term>
-<term><name>1999</name><frequency>318</frequency></term>
-<term><name>1998</name><frequency>90</frequency></term>
-<term><name>2001</name><frequency>87</frequency></term>
-<term><name>1907</name><frequency>50</frequency></term>
-<term><name>1902</name><frequency>46</frequency></term>
-<term><name>1906</name><frequency>43</frequency></term>
-<term><name>1905</name><frequency>39</frequency></term>
-<term><name>1909</name><frequency>39</frequency></term>
-<term><name>1904</name><frequency>36</frequency></term>
-<term><name>1997</name><frequency>35</frequency></term>
-<term><name>1908</name><frequency>33</frequency></term>
-<term><name>1996</name><frequency>32</frequency></term>
-<term><name>1903</name><frequency>30</frequency></term>
-<term><name>1901</name><frequency>29</frequency></term>
+<term><name>2000</name><frequency>822</frequency></term>
+<term><name>1999</name><frequency>636</frequency></term>
+<term><name>1998</name><frequency>180</frequency></term>
+<term><name>2001</name><frequency>174</frequency></term>
+<term><name>1907</name><frequency>100</frequency></term>
+<term><name>1902</name><frequency>92</frequency></term>
+<term><name>1906</name><frequency>86</frequency></term>
+<term><name>1905</name><frequency>78</frequency></term>
+<term><name>1909</name><frequency>78</frequency></term>
+<term><name>1904</name><frequency>72</frequency></term>
+<term><name>1997</name><frequency>70</frequency></term>
+<term><name>1908</name><frequency>66</frequency></term>
+<term><name>1996</name><frequency>64</frequency></term>
+<term><name>1903</name><frequency>60</frequency></term>
+<term><name>1901</name><frequency>58</frequency></term>
 </list>
 <list name="medium">
-<term><name>book</name><frequency>1984</frequency></term>
-<term><name>web</name><frequency>8</frequency></term>
-<term><name>book (electronic)</name><frequency>3</frequency></term>
+<term><name>book</name><frequency>3968</frequency></term>
+<term><name>web</name><frequency>16</frequency></term>
+<term><name>book (electronic)</name><frequency>6</frequency></term>
 </list>
 </termlist>
\ No newline at end of file
index 6fb7f8b..3cb9c71 100644 (file)
 
   <set name="full_text_target"  value="=NO" />
   <!-- Configure native facets -->
-<!--
   <set name="pz:termlist_term_count" value="10"/>
   <set name="pz:facetmap:author"  value="author_exact"  />
   <set name="pz:facetmap:subject" value="subject_exact" />
   <set name="pz:facetmap:medium"  value="medium_exact"  />
   <set name="pz:facetmap:date"  value="date" />
--->
 
   <set name="use_url_proxy"  value="0" />
   <set name="pz:piggyback"   value="1" />