geohydra 0.3.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +2 -1
- data/.travis.yml +1 -2
- data/Gemfile +1 -8
- data/Gemfile.lock +87 -102
- data/README.md +2 -2
- data/VERSION +1 -1
- data/bin/accession.rb +99 -89
- data/bin/assemble.rb +288 -247
- data/bin/assemble_data.rb +54 -51
- data/bin/assemble_placenames.rb +85 -85
- data/bin/build_stage_options.rb +24 -18
- data/bin/derive_wgs84.rb +65 -66
- data/bin/extract_thumbnail.rb +38 -37
- data/bin/geo2mods.rb +78 -0
- data/bin/geohydra +14 -5
- data/bin/ingest_arcgis.rb +80 -60
- data/bin/iso2geo.rb +64 -0
- data/bin/loader_postgis.rb +121 -227
- data/bin/run_task.rb +23 -0
- data/bin/sync_geoserver_metadata.rb +132 -127
- data/bin/xsltproc-saxon +6 -0
- data/geohydra.gemspec +6 -4
- data/lib/geohydra.rb +5 -0
- data/lib/geohydra/accession.rb +24 -13
- data/lib/geohydra/{arcgis_to_iso19139_fc.xsl → arcgis_to_iso19110.xsl} +0 -0
- data/lib/geohydra/gazetteer.csv +842 -36
- data/lib/geohydra/gazetteer.rb +48 -24
- data/lib/geohydra/mods2geoblacklight.xsl +248 -0
- data/lib/geohydra/mods2ogp.xsl +5 -8
- data/lib/geohydra/transform.rb +8 -2
- data/lib/geohydra/utils.rb +6 -0
- data/lib/geohydra/workflow/gisAssemblyWF.rb +109 -0
- data/lib/geohydra/workflow/gisAssemblyWF.xml +85 -0
- data/lib/geohydra/workflow/gisDeliveryWF.rb +33 -0
- data/lib/geohydra/workflow/gisDeliveryWF.xml +36 -0
- data/lib/geohydra/workflow/gisDiscoveryWF.rb +55 -0
- data/lib/geohydra/workflow/gisDiscoveryWF.xml +28 -0
- data/lib/geohydra/workflow/task.rb +82 -0
- data/ogp/README.md +350 -0
- data/ogp/download.rb +92 -0
- data/ogp/fgdc2mods.sh +9 -0
- data/ogp/fgdc2mods.xsl +884 -0
- data/ogp/ingest.rb +48 -0
- data/ogp/select.rb +20 -0
- data/ogp/transform.rb +354 -0
- data/ogp/validate.rb +182 -0
- data/{bin → scripts}/ingest_tufts.rb +0 -0
- data/scripts/iso2html/doit.sh +15 -0
- data/scripts/iso2html/main.css +66 -0
- data/scripts/iso2html/pacioos-iso-html.xsl +1749 -0
- data/scripts/iso2html/utils/replace-newlines.xsl +97 -0
- data/scripts/iso2html/utils/replace-string.xsl +80 -0
- data/scripts/iso2html/utils/strip-digits.xsl +60 -0
- data/{bin → scripts}/loader.rb +0 -0
- data/scripts/rename_shapefiles.rb +5 -0
- data/scripts/render_gazetteer.rb +36 -0
- data/{bin → scripts}/seed.rb +0 -0
- data/{bin → scripts}/solr_indexer.rb +0 -0
- data/scripts/status.csv +253 -0
- data/scripts/status.rb +32 -0
- data/{bin → scripts}/validate_data.rb +1 -1
- data/solr/kurma-app-dev/conf/lang/stopwords_en.txt +34 -0
- data/solr/kurma-app-dev/conf/protwords.txt +21 -0
- data/solr/kurma-app-dev/conf/schema.xml +156 -0
- data/solr/kurma-app-dev/conf/solrconfig.xml +161 -0
- data/solr/kurma-app-dev/conf/synonyms.txt +29 -0
- data/solr/kurma-app-dev/purge.sh +8 -0
- data/solr/kurma-app-test/conf/lang/stopwords_en.txt +34 -0
- data/solr/kurma-app-test/conf/protwords.txt +21 -0
- data/solr/kurma-app-test/conf/schema.xml +158 -0
- data/solr/kurma-app-test/conf/solrconfig.xml +161 -0
- data/solr/kurma-app-test/conf/synonyms.txt +29 -0
- data/solr/kurma-app-test/deploy.sh +15 -0
- data/solr/kurma-app-test/purge.sh +8 -0
- data/solr/ogp-dev/purge.sh +1 -2
- data/spec/fixtures/bw938nk9584/temp/{TRIPURA-iso19139-fc.xml → TRIPURA-iso19110.xml} +0 -0
- data/spec/fixtures/cc142xj8436/temp/{HARYANA-iso19139-fc.xml → HARYANA-iso19110.xml} +0 -0
- data/spec/fixtures/cg716wc7949/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/cm007pv9601/temp/{MEGHALAYA-iso19139-fc.xml → MEGHALAYA-iso19110.xml} +0 -0
- data/spec/fixtures/cp055nb0189/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/cs838pw3418/temp/{OIL_GAS_FIELDS-iso19139-fc.xml → OIL_GAS_FIELDS-iso19110.xml} +0 -0
- data/spec/fixtures/dd308sy5843/temp/{ORISSA-iso19139-fc.xml → ORISSA-iso19110.xml} +0 -0
- data/spec/fixtures/dd452vk1873/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/dg850pt1796/temp/{STATE1951-iso19139-fc.xml → STATE1951-iso19110.xml} +0 -0
- data/spec/fixtures/dn744tf5427/temp/{DISTRICT1991-iso19139-fc.xml → DISTRICT1991-iso19110.xml} +0 -0
- data/spec/fixtures/dq603nz8402/temp/{STATE2001-iso19139-fc.xml → STATE2001-iso19110.xml} +0 -0
- data/spec/fixtures/dv609zt4699/temp/{ASSAM-iso19139-fc.xml → ASSAM-iso19110.xml} +0 -0
- data/spec/fixtures/dz222hw0585/temp/{PUNJAB-iso19139-fc.xml → PUNJAB-iso19110.xml} +0 -0
- data/spec/fixtures/fd673qb9705/temp/{STATE1971-iso19139-fc.xml → STATE1971-iso19110.xml} +0 -0
- data/spec/fixtures/fg451wp8917/temp/{SIKKIM-iso19139-fc.xml → SIKKIM-iso19110.xml} +0 -0
- data/spec/fixtures/fh247yz0156/temp/{RAJASTHAN-iso19139-fc.xml → RAJASTHAN-iso19110.xml} +0 -0
- data/spec/fixtures/fs487vd1465/temp/{CHHATTISGARH-iso19139-fc.xml → CHHATTISGARH-iso19110.xml} +0 -0
- data/spec/fixtures/fs591bn3317/temp/{HIMACHAL_PRADESH-iso19139-fc.xml → HIMACHAL_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/fw920bc5473/temp/{PLSS_TWN-iso19139-fc.xml → PLSS_TWN-iso19110.xml} +0 -0
- data/spec/fixtures/gj831wj3625/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/gp075nv3265/temp/{PONDICHERRY-iso19139-fc.xml → PONDICHERRY-iso19110.xml} +0 -0
- data/spec/fixtures/gv800hj8141/temp/{BIHAR-iso19139-fc.xml → BIHAR-iso19110.xml} +0 -0
- data/spec/fixtures/gw520gz6339/temp/{DADRA_NAGAR_HAVELI_PT-iso19139-fc.xml → DADRA_NAGAR_HAVELI_PT-iso19110.xml} +0 -0
- data/spec/fixtures/gy054hz1045/temp/{HARYANA-iso19139-fc.xml → HARYANA-iso19110.xml} +0 -0
- data/spec/fixtures/gz352mw6982/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/hb489vm9892/temp/{DISTRICT1981-iso19139-fc.xml → DISTRICT1981-iso19110.xml} +0 -0
- data/spec/fixtures/hw125dq0418/temp/{DELHI-iso19139-fc.xml → DELHI-iso19110.xml} +0 -0
- data/spec/fixtures/hw892mn4587/temp/{KERALA-iso19139-fc.xml → KERALA-iso19110.xml} +0 -0
- data/spec/fixtures/jb371hz3868/temp/{INCOME-iso19139-fc.xml → INCOME-iso19110.xml} +0 -0
- data/spec/fixtures/jc017yk9928/temp/{KARNATAKA-iso19139-fc.xml → KARNATAKA-iso19110.xml} +0 -0
- data/spec/fixtures/jf841ys4828/temp/{ANDHRA_PRADESH-iso19139-fc.xml → ANDHRA_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/jh802mp2160/temp/{DELHI_PT-iso19139-fc.xml → DELHI_PT-iso19110.xml} +0 -0
- data/spec/fixtures/jj806fc3801/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/jq835yn7161/temp/{HIMACHAL_PRADESH-iso19139-fc.xml → HIMACHAL_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/jr455pt6676/temp/{TAMILNADU-iso19139-fc.xml → TAMILNADU-iso19110.xml} +0 -0
- data/spec/fixtures/js637zp2537/temp/{BIHAR-iso19139-fc.xml → BIHAR-iso19110.xml} +0 -0
- data/spec/fixtures/jv502wg9611/temp/{GOA-iso19139-fc.xml → GOA-iso19110.xml} +0 -0
- data/spec/fixtures/jw462ck6560/temp/{JAMMU_KASHMIR-iso19139-fc.xml → JAMMU_KASHMIR-iso19110.xml} +0 -0
- data/spec/fixtures/kj800fb6273/temp/{STATE2011-iso19139-fc.xml → STATE2011-iso19110.xml} +0 -0
- data/spec/fixtures/km504zq3948/temp/{HIMACHAL_PRADESH-iso19139-fc.xml → HIMACHAL_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/ks297fy1411/temp/{OFFSH_BLOCKS-iso19139-fc.xml → OFFSH_BLOCKS-iso19110.xml} +0 -0
- data/spec/fixtures/md358hy5049/temp/{MIZORAM-iso19139-fc.xml → MIZORAM-iso19110.xml} +0 -0
- data/spec/fixtures/mg745bq0193/temp/{MADHYA_PRADESH-iso19139-fc.xml → MADHYA_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/mh187yx3536/temp/{WEST_BENGAL-iso19139-fc.xml → WEST_BENGAL-iso19110.xml} +0 -0
- data/spec/fixtures/mk488yn6694/temp/{GUJARAT-iso19139-fc.xml → GUJARAT-iso19110.xml} +0 -0
- data/spec/fixtures/my216kp3008/temp/{DELHI-iso19139-fc.xml → DELHI-iso19110.xml} +0 -0
- data/spec/fixtures/my504nz9827/temp/{JAMMU_KASHMIR-iso19139-fc.xml → JAMMU_KASHMIR-iso19110.xml} +0 -0
- data/spec/fixtures/ng819jm8700/temp/{MANIPUR-iso19139-fc.xml → MANIPUR-iso19110.xml} +0 -0
- data/spec/fixtures/np020jq2139/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/ns377mt1608/temp/{STATE1991-iso19139-fc.xml → STATE1991-iso19110.xml} +0 -0
- data/spec/fixtures/nw926np8508/temp/{metadata.iso19139-fc.xml → metadata.iso19110.xml} +0 -0
- data/spec/fixtures/ny358rm8559/temp/{TRIPURA-iso19139-fc.xml → TRIPURA-iso19110.xml} +0 -0
- data/spec/fixtures/nz176rm8192/temp/{DISTRICT2011-iso19139-fc.xml → DISTRICT2011-iso19110.xml} +0 -0
- data/spec/fixtures/nz252rq2252/temp/{UTTAR_PRADESH-iso19139-fc.xml → UTTAR_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/pd902kb3348/temp/{MADHYA_PRADESH-iso19139-fc.xml → MADHYA_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/pz792fz1776/temp/{MAHARASHTRA-iso19139-fc.xml → MAHARASHTRA-iso19110.xml} +0 -0
- data/spec/fixtures/qb767ss4042/temp/{UTTAR_PRADESH-iso19139-fc.xml → UTTAR_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/qc091qw0570/temp/{GUJARAT-iso19139-fc.xml → GUJARAT-iso19110.xml} +0 -0
- data/spec/fixtures/qc652vr7204/temp/{ANDHRA_PRADESH_PT-iso19139-fc.xml → ANDHRA_PRADESH_PT-iso19110.xml} +0 -0
- data/spec/fixtures/qk786js7484/temp/{DISTRICT1961-iso19139-fc.xml → DISTRICT1961-iso19110.xml} +0 -0
- data/spec/fixtures/qn676pg6767/temp/{GOA-iso19139-fc.xml → GOA-iso19110.xml} +0 -0
- data/spec/fixtures/qr255jh4074/temp/{LOKSABHA_14-iso19139-fc.xml → LOKSABHA_14-iso19110.xml} +0 -0
- data/spec/fixtures/qr374kj4827/temp/{ASSAM-iso19139-fc.xml → ASSAM-iso19110.xml} +0 -0
- data/spec/fixtures/qy162js1748/temp/{CHHATTISGARH-iso19139-fc.xml → CHHATTISGARH-iso19110.xml} +0 -0
- data/spec/fixtures/rd446vf2633/temp/{NAGALAND-iso19139-fc.xml → NAGALAND-iso19110.xml} +0 -0
- data/spec/fixtures/rf389hf2983/temp/{CHHATTISGARH_PT-iso19139-fc.xml → CHHATTISGARH_PT-iso19110.xml} +0 -0
- data/spec/fixtures/rf859ff4582/temp/{JHARKHAND-iso19139-fc.xml → JHARKHAND-iso19110.xml} +0 -0
- data/spec/fixtures/rh343ds8931/temp/{BIHAR-iso19139-fc.xml → BIHAR-iso19110.xml} +0 -0
- data/spec/fixtures/rn815xk8157/temp/{SIKKIM-iso19139-fc.xml → SIKKIM-iso19110.xml} +0 -0
- data/spec/fixtures/rq653sz4470/temp/{CHHATTISGARH-iso19139-fc.xml → CHHATTISGARH-iso19110.xml} +0 -0
- data/spec/fixtures/rt625ws6022/temp/{GULF_FAIRWAYS-iso19139-fc.xml → GULF_FAIRWAYS-iso19110.xml} +0 -0
- data/spec/fixtures/sc330vf4259/temp/{JHARKHAND-iso19139-fc.xml → JHARKHAND-iso19110.xml} +0 -0
- data/spec/fixtures/sq479mx3086/temp/{OFFSH_PLATF-iso19139-fc.xml → OFFSH_PLATF-iso19110.xml} +0 -0
- data/spec/fixtures/sr686bm4098/temp/{DAMAN_DIU_PT-iso19139-fc.xml → DAMAN_DIU_PT-iso19110.xml} +0 -0
- data/spec/fixtures/sv303sh5583/temp/{ARUNACHAL_PRADESH-iso19139-fc.xml → ARUNACHAL_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/sy319nh8520/temp/{GUJARAT-iso19139-fc.xml → GUJARAT-iso19110.xml} +0 -0
- data/spec/fixtures/td363vx2792/temp/{HIMACHAL_PRADESH_PT-iso19139-fc.xml → HIMACHAL_PRADESH_PT-iso19110.xml} +0 -0
- data/spec/fixtures/tf374bd2484/temp/{DISTRICT1951-iso19139-fc.xml → DISTRICT1951-iso19110.xml} +0 -0
- data/spec/fixtures/tj797mj7877/temp/{LOKSABHA_15-iso19139-fc.xml → LOKSABHA_15-iso19110.xml} +0 -0
- data/spec/fixtures/tv060wq5179/temp/{ASSAM-iso19139-fc.xml → ASSAM-iso19110.xml} +0 -0
- data/spec/fixtures/tv536bn1915/temp/{ARUNACHAL_PRADESH-iso19139-fc.xml → ARUNACHAL_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/tz359cc2977/temp/{MANIPUR-iso19139-fc.xml → MANIPUR-iso19110.xml} +0 -0
- data/spec/fixtures/vb525my6511/temp/{UTTARAKHAND-iso19139-fc.xml → UTTARAKHAND-iso19110.xml} +0 -0
- data/spec/fixtures/vh802fs4240/temp/{PONDICHERRY-iso19139-fc.xml → PONDICHERRY-iso19110.xml} +0 -0
- data/spec/fixtures/vk120xn2474/temp/{PLSS_SEC-iso19139-fc.xml → PLSS_SEC-iso19110.xml} +0 -0
- data/spec/fixtures/vn439bc7316/temp/{KERALA-iso19139-fc.xml → KERALA-iso19110.xml} +0 -0
- data/spec/fixtures/vq745jk0695/temp/{MEGHALAYA-iso19139-fc.xml → MEGHALAYA-iso19110.xml} +0 -0
- data/spec/fixtures/vr593vj7147/temp/{ANDHRA_PRADESH-iso19139-fc.xml → ANDHRA_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/vw911qb5271/temp/{DISTRICT2001-iso19139-fc.xml → DISTRICT2001-iso19110.xml} +0 -0
- data/spec/fixtures/wg680pz0365/temp/{ANDHRA_PRADESH-iso19139-fc.xml → ANDHRA_PRADESH-iso19110.xml} +0 -0
- data/spec/fixtures/wg761xn1926/temp/{HARYANA-iso19139-fc.xml → HARYANA-iso19110.xml} +0 -0
- data/spec/fixtures/wh870qw1934/temp/{PUNJAB-iso19139-fc.xml → PUNJAB-iso19110.xml} +0 -0
- data/spec/fixtures/wk775mm4673/temp/{MAHARASHTRA-iso19139-fc.xml → MAHARASHTRA-iso19110.xml} +0 -0
- data/spec/fixtures/ws171yz2165/temp/{ARUNACHAL_PRADESH_PT-iso19139-fc.xml → ARUNACHAL_PRADESH_PT-iso19110.xml} +0 -0
- data/spec/fixtures/wt473hz7153/temp/{CHANDIGARH_PT-iso19139-fc.xml → CHANDIGARH_PT-iso19110.xml} +0 -0
- data/spec/fixtures/ww217dj0457/temp/{CO2_PIPE-iso19139-fc.xml → CO2_PIPE-iso19110.xml} +0 -0
- data/spec/fixtures/wy875pk9849/temp/{STATE1961-iso19139-fc.xml → STATE1961-iso19110.xml} +0 -0
- data/spec/fixtures/xb018tk2042/temp/{STATE1981-iso19139-fc.xml → STATE1981-iso19110.xml} +0 -0
- data/spec/fixtures/xg539vw8586/temp/{ORISSA-iso19139-fc.xml → ORISSA-iso19110.xml} +0 -0
- data/spec/fixtures/xv475kp4644/temp/{ASSAM_PT-iso19139-fc.xml → ASSAM_PT-iso19110.xml} +0 -0
- data/spec/fixtures/xy096gc2959/temp/{GOA-iso19139-fc.xml → GOA-iso19110.xml} +0 -0
- data/spec/fixtures/xz518gz3362/temp/{UTTARAKHAND-iso19139-fc.xml → UTTARAKHAND-iso19110.xml} +0 -0
- data/spec/fixtures/yh986wy4737/temp/{NAGALAND-iso19139-fc.xml → NAGALAND-iso19110.xml} +0 -0
- data/spec/fixtures/yn187fq4474/temp/{KARNATAKA-iso19139-fc.xml → KARNATAKA-iso19110.xml} +0 -0
- data/spec/fixtures/yn236mw3250/temp/{TAMILNADU-iso19139-fc.xml → TAMILNADU-iso19110.xml} +0 -0
- data/spec/fixtures/yz596nz0112/temp/{WEST_BENGAL-iso19139-fc.xml → WEST_BENGAL-iso19110.xml} +0 -0
- data/spec/fixtures/zk596gy7380/temp/{DISTRICT1971-iso19139-fc.xml → DISTRICT1971-iso19110.xml} +0 -0
- data/spec/fixtures/zn452hh7431/temp/{RAJASTHAN-iso19139-fc.xml → RAJASTHAN-iso19110.xml} +0 -0
- data/spec/fixtures/zt093fw6519/temp/{MIZORAM-iso19139-fc.xml → MIZORAM-iso19110.xml} +0 -0
- data/spec/fixtures/zv925hd6723/temp/{OGWELLS-iso19139-fc.xml → OGWELLS-iso19110.xml} +0 -0
- data/spec/fixtures/zy658cr1728/temp/{ANDAMAAN_NICOBAR_PT-iso19139-fc.xml → ANDAMAAN_NICOBAR_PT-iso19110.xml} +0 -0
- data/spec/fixtures/zz943vx1492/temp/{BASINS-iso19139-fc.xml → BASINS-iso19110.xml} +0 -0
- data/spec/unit/gazetteer_spec.rb +100 -35
- data/spec/unit/task_spec.rb +68 -0
- data/spec/unit/transform_spec.rb +1 -1
- data/spec/unit/utils_spec.rb +17 -3
- data/workflow.rb +35 -0
- metadata +323 -316
| @@ -0,0 +1,97 @@ | |
| 1 | 
            +
            <!--
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            replace-newlines.xsl
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Author: John Maurer (jmaurer@hawaii.edu)
         | 
| 6 | 
            +
            Date: June 2007 (when I was at National Snow and Ice Data Center)
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            This Extensible Stylesheet Language for Transformations (XSLT) document takes
         | 
| 9 | 
            +
            an input string and outputs it with all newline characters substituted with
         | 
| 10 | 
            +
            HTML <br/> elements. This helps maintain paragraph and text structures when
         | 
| 11 | 
            +
            using them to output to an HTML document. You can import this XSLT in other 
         | 
| 12 | 
            +
            XSLT files to call the "replace-newlines" template for accomplishing this. 
         | 
| 13 | 
            +
            Here is an example import statement:
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            <xsl:import href="replace-newlines.xsl"/>
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            For more information on XSLT see:
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            http://en.wikipedia.org/wiki/XSLT
         | 
| 20 | 
            +
            http://www.w3.org/TR/xslt
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            -->
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            <xsl:stylesheet
         | 
| 25 | 
            +
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
         | 
| 26 | 
            +
              version="1.0">
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              <xsl:output method="text"/>
         | 
| 29 | 
            +
             | 
| 30 | 
            +
              <!-- Define a variable for creating a newline: -->
         | 
| 31 | 
            +
             | 
| 32 | 
            +
              <xsl:variable name="newline">
         | 
| 33 | 
            +
            <xsl:text>
         | 
| 34 | 
            +
            </xsl:text>
         | 
| 35 | 
            +
              </xsl:variable>
         | 
| 36 | 
            +
             | 
| 37 | 
            +
              <!-- Define a variable for creating an HTML <br/> element: -->
         | 
| 38 | 
            +
             | 
| 39 | 
            +
              <xsl:variable name="break">
         | 
| 40 | 
            +
                <xsl:text disable-output-escaping="yes"><br/></xsl:text>
         | 
| 41 | 
            +
              </xsl:variable>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
              <!-- Template to replace newlines with <br/>'s; note the use
         | 
| 44 | 
            +
                   of "disable-output-escaping" to presever the <br/> in an
         | 
| 45 | 
            +
                   output HTML document without it being converted to
         | 
| 46 | 
            +
                   <br/>, which ends up displaying the characters "<br/>"
         | 
| 47 | 
            +
                   in the output rather than an actual HTML element: -->
         | 
| 48 | 
            +
             | 
| 49 | 
            +
              <xsl:template name="replace-newlines">
         | 
| 50 | 
            +
                <xsl:param name="element"/>
         | 
| 51 | 
            +
                <xsl:variable name="first">
         | 
| 52 | 
            +
                  <xsl:choose>
         | 
| 53 | 
            +
                    <xsl:when test="contains( $element, $newline )">
         | 
| 54 | 
            +
                      <xsl:value-of select="substring-before( $element, $newline )"/>
         | 
| 55 | 
            +
                    </xsl:when>
         | 
| 56 | 
            +
                    <xsl:otherwise>
         | 
| 57 | 
            +
                      <xsl:value-of select="$element"/>
         | 
| 58 | 
            +
                    </xsl:otherwise>
         | 
| 59 | 
            +
                  </xsl:choose>
         | 
| 60 | 
            +
                </xsl:variable>
         | 
| 61 | 
            +
                <xsl:variable name="middle">
         | 
| 62 | 
            +
                  <xsl:choose>
         | 
| 63 | 
            +
                    <xsl:when test="contains( $element, $newline )">
         | 
| 64 | 
            +
                      <xsl:value-of select="$break"/>
         | 
| 65 | 
            +
                    </xsl:when>
         | 
| 66 | 
            +
                    <xsl:otherwise>
         | 
| 67 | 
            +
                      <xsl:text></xsl:text>
         | 
| 68 | 
            +
                    </xsl:otherwise>
         | 
| 69 | 
            +
                  </xsl:choose>
         | 
| 70 | 
            +
                </xsl:variable>
         | 
| 71 | 
            +
                <xsl:variable name="last">
         | 
| 72 | 
            +
                  <xsl:choose>
         | 
| 73 | 
            +
                    <xsl:when test="contains( $element, $newline )">
         | 
| 74 | 
            +
                      <xsl:choose>
         | 
| 75 | 
            +
                        <xsl:when test="contains( substring-after( $element, $newline ), $newline )">
         | 
| 76 | 
            +
                          <xsl:call-template name="replace-newlines">
         | 
| 77 | 
            +
                            <xsl:with-param name="element">
         | 
| 78 | 
            +
                              <xsl:value-of select="substring-after( $element, $newline )"/>
         | 
| 79 | 
            +
                            </xsl:with-param>
         | 
| 80 | 
            +
                          </xsl:call-template>
         | 
| 81 | 
            +
                        </xsl:when>
         | 
| 82 | 
            +
                        <xsl:otherwise>
         | 
| 83 | 
            +
                          <xsl:value-of select="substring-after( $element, $newline )"/>
         | 
| 84 | 
            +
                        </xsl:otherwise>
         | 
| 85 | 
            +
                      </xsl:choose>
         | 
| 86 | 
            +
                    </xsl:when>
         | 
| 87 | 
            +
                    <xsl:otherwise>
         | 
| 88 | 
            +
                      <xsl:text></xsl:text>
         | 
| 89 | 
            +
                    </xsl:otherwise>
         | 
| 90 | 
            +
                  </xsl:choose>
         | 
| 91 | 
            +
                </xsl:variable>
         | 
| 92 | 
            +
                <xsl:value-of select="$first" disable-output-escaping="yes"/>
         | 
| 93 | 
            +
                <xsl:value-of select="$middle" disable-output-escaping="yes"/>
         | 
| 94 | 
            +
                <xsl:value-of select="$last" disable-output-escaping="yes"/>
         | 
| 95 | 
            +
              </xsl:template>
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            </xsl:stylesheet>
         | 
| @@ -0,0 +1,80 @@ | |
| 1 | 
            +
            <!--
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            replace-string.xsl
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Author: John Maurer (jmaurer@hawaii.edu)
         | 
| 6 | 
            +
            Date: July 2007 (when I was at National Snow and Ice Data Center)
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            This Extensible Stylesheet Language for Transformations (XSLT) document takes
         | 
| 9 | 
            +
            an input string and outputs it with all $old-string's substituted with the 
         | 
| 10 | 
            +
            specified $new-string. You can import this XSLT in other XSLT files to call 
         | 
| 11 | 
            +
            the "replace-string" template for accomplishing this. Here is an example 
         | 
| 12 | 
            +
            import statement:
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            <xsl:import href="replace-string.xsl"/>
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            For more information on XSLT see:
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            http://en.wikipedia.org/wiki/XSLT
         | 
| 19 | 
            +
            http://www.w3.org/TR/xslt
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            -->
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            <xsl:stylesheet
         | 
| 24 | 
            +
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
         | 
| 25 | 
            +
              version="1.0">
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              <xsl:output method="text"/>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
              <xsl:template name="replace-string">
         | 
| 30 | 
            +
                <xsl:param name="element"/>
         | 
| 31 | 
            +
                <xsl:param name="old-string"/>
         | 
| 32 | 
            +
                <xsl:param name="new-string"/>
         | 
| 33 | 
            +
                <xsl:variable name="first">
         | 
| 34 | 
            +
                  <xsl:choose>
         | 
| 35 | 
            +
                    <xsl:when test="contains( $element, $old-string )">
         | 
| 36 | 
            +
                      <xsl:value-of select="substring-before( $element, $old-string )"/>
         | 
| 37 | 
            +
                    </xsl:when>
         | 
| 38 | 
            +
                    <xsl:otherwise>
         | 
| 39 | 
            +
                      <xsl:value-of select="$element"/>
         | 
| 40 | 
            +
                    </xsl:otherwise>
         | 
| 41 | 
            +
                  </xsl:choose>
         | 
| 42 | 
            +
                </xsl:variable>
         | 
| 43 | 
            +
                <xsl:variable name="middle">
         | 
| 44 | 
            +
                  <xsl:choose>
         | 
| 45 | 
            +
                    <xsl:when test="contains( $element, $old-string )">
         | 
| 46 | 
            +
                      <xsl:value-of select="$new-string"/>
         | 
| 47 | 
            +
                    </xsl:when>
         | 
| 48 | 
            +
                    <xsl:otherwise>
         | 
| 49 | 
            +
                      <xsl:text></xsl:text>
         | 
| 50 | 
            +
                    </xsl:otherwise>
         | 
| 51 | 
            +
                  </xsl:choose>
         | 
| 52 | 
            +
                </xsl:variable>
         | 
| 53 | 
            +
                <xsl:variable name="last">
         | 
| 54 | 
            +
                  <xsl:choose>
         | 
| 55 | 
            +
                    <xsl:when test="contains( $element, $old-string )">
         | 
| 56 | 
            +
                      <xsl:choose>
         | 
| 57 | 
            +
                        <xsl:when test="contains( substring-after( $element, $old-string ), $old-string )">
         | 
| 58 | 
            +
                          <xsl:call-template name="replace-string">
         | 
| 59 | 
            +
                            <xsl:with-param name="element" select="substring-after( $element, $old-string )"/>
         | 
| 60 | 
            +
                            <xsl:with-param name="old-string" select="$old-string"/>
         | 
| 61 | 
            +
                            <xsl:with-param name="new-string" select="$new-string"/>
         | 
| 62 | 
            +
                          </xsl:call-template>
         | 
| 63 | 
            +
                        </xsl:when>
         | 
| 64 | 
            +
                        <xsl:otherwise>
         | 
| 65 | 
            +
                          <xsl:value-of select="substring-after( $element, $old-string )"/>
         | 
| 66 | 
            +
                        </xsl:otherwise>
         | 
| 67 | 
            +
                      </xsl:choose>
         | 
| 68 | 
            +
                    </xsl:when>
         | 
| 69 | 
            +
                    <xsl:otherwise>
         | 
| 70 | 
            +
                      <xsl:text></xsl:text>
         | 
| 71 | 
            +
                    </xsl:otherwise>
         | 
| 72 | 
            +
                  </xsl:choose>
         | 
| 73 | 
            +
                </xsl:variable>
         | 
| 74 | 
            +
                <!-- Disable output escaping to allow HTML tags to be interpreted: -->
         | 
| 75 | 
            +
                <xsl:value-of select="$first" disable-output-escaping="yes"/>
         | 
| 76 | 
            +
                <xsl:value-of select="$middle" disable-output-escaping="yes"/>
         | 
| 77 | 
            +
                <xsl:value-of select="$last" disable-output-escaping="yes"/>
         | 
| 78 | 
            +
              </xsl:template>
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            </xsl:stylesheet>
         | 
| @@ -0,0 +1,60 @@ | |
| 1 | 
            +
            <!--
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            strip-digits.xsl
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Author: John Maurer (jmaurer@hawaii.edu)
         | 
| 6 | 
            +
            Date: November 18, 2011 
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            This Extensible Stylesheet Language for Transformations (XSLT) document takes
         | 
| 9 | 
            +
            a number and outputs it with up to the specified number of digits following the
         | 
| 10 | 
            +
            decimal point. If there are fewer than the specified number of digits, all will
         | 
| 11 | 
            +
            be returned and no extra. If there are no decimal places, the supplied integer
         | 
| 12 | 
            +
            will be returned unchanged. Looks for exponent segment in number string
         | 
| 13 | 
            +
            (e.g. 1.0045E-4) and maintains that if present.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            You can import this XSLT in other XSLT files to call the "strip-digits" template
         | 
| 16 | 
            +
            for accomplishing this. Here is an example import statement:
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            <xsl:import href="strip-digits.xsl"/>
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            For more information on XSLT see:
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            http://en.wikipedia.org/wiki/XSLT
         | 
| 23 | 
            +
            http://www.w3.org/TR/xslt
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            -->
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            <xsl:stylesheet
         | 
| 28 | 
            +
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
         | 
| 29 | 
            +
              version="1.0">
         | 
| 30 | 
            +
             | 
| 31 | 
            +
              <xsl:template name="strip-digits">
         | 
| 32 | 
            +
                <xsl:param name="element"/>
         | 
| 33 | 
            +
                <xsl:param name="num-digits"/>
         | 
| 34 | 
            +
                <xsl:choose>
         | 
| 35 | 
            +
                  <xsl:when test="contains( $element, '.' )">
         | 
| 36 | 
            +
                    <xsl:variable name="element-uc" select="translate( $element, 'e', 'E' )"/>
         | 
| 37 | 
            +
                    <xsl:choose>
         | 
| 38 | 
            +
                      <xsl:when test="contains( $element-uc, 'E' )">
         | 
| 39 | 
            +
                        <xsl:variable name="before-exponent" select="substring-before( $element-uc, 'E' )"/>
         | 
| 40 | 
            +
                        <xsl:variable name="exponent" select="substring-after( $element-uc, 'E' )"/>
         | 
| 41 | 
            +
                        <xsl:variable name="before-decimal" select="substring-before( $before-exponent, '.' )"/>
         | 
| 42 | 
            +
                        <xsl:variable name="after-decimal" select="substring-after( $before-exponent, '.' )"/>
         | 
| 43 | 
            +
                        <xsl:variable name="after-decimal-stripped" select="substring( $after-decimal, 1, $num-digits )"/>
         | 
| 44 | 
            +
                        <xsl:value-of select="concat( $before-decimal, '.', $after-decimal-stripped, 'E', $exponent )"/>
         | 
| 45 | 
            +
                      </xsl:when>
         | 
| 46 | 
            +
                      <xsl:otherwise> 
         | 
| 47 | 
            +
                        <xsl:variable name="before-decimal" select="substring-before( $element, '.' )"/>
         | 
| 48 | 
            +
                        <xsl:variable name="after-decimal" select="substring-after( $element, '.' )"/>
         | 
| 49 | 
            +
                        <xsl:variable name="after-decimal-stripped" select="substring( $after-decimal, 1, $num-digits )"/>
         | 
| 50 | 
            +
                        <xsl:value-of select="concat( $before-decimal, '.', $after-decimal-stripped )"/>
         | 
| 51 | 
            +
                      </xsl:otherwise>
         | 
| 52 | 
            +
                    </xsl:choose>
         | 
| 53 | 
            +
                  </xsl:when>
         | 
| 54 | 
            +
                  <xsl:otherwise>
         | 
| 55 | 
            +
                    <xsl:value-of select="$element"/>
         | 
| 56 | 
            +
                  </xsl:otherwise>
         | 
| 57 | 
            +
                </xsl:choose>
         | 
| 58 | 
            +
              </xsl:template>
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            </xsl:stylesheet>
         | 
    
        data/{bin → scripts}/loader.rb
    RENAMED
    
    | 
            File without changes
         | 
| @@ -0,0 +1,36 @@ | |
| 1 | 
            +
            #!/usr/bin/env ruby
         | 
| 2 | 
            +
            # encoding: UTF-8
         | 
| 3 | 
            +
            require File.expand_path(File.dirname(__FILE__) + '/../config/boot')
         | 
| 4 | 
            +
            require 'druid-tools'
         | 
| 5 | 
            +
            require 'optparse'
         | 
| 6 | 
            +
            require 'json'
         | 
| 7 | 
            +
            require 'uri'
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            puts "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head><body>"
         | 
| 10 | 
            +
            puts "<table border=0><tr><th>Key</th><th>Placename (GeoNames)</th><th>LOC Subject (SearchWorks)</th></tr>"
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            @@g = GeoHydra::Gazetteer.new
         | 
| 13 | 
            +
            @@g.each {|k|
         | 
| 14 | 
            +
              gk = @@g.find_placename(k)
         | 
| 15 | 
            +
              id = @@g.find_id(k)
         | 
| 16 | 
            +
              lc = @@g.find_loc_keyword(k)
         | 
| 17 | 
            +
              puts "<tr>"
         | 
| 18 | 
            +
              if k == gk
         | 
| 19 | 
            +
                puts "<td><i>#{k}</i></td>"
         | 
| 20 | 
            +
              else
         | 
| 21 | 
            +
                puts "<td>#{k}</td>"
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
              puts "<td><a href=\"http://sws.geonames.org/#{id}\">#{gk}</a> <small><a href=\"http://sws.geonames.org/#{id}/about.rdf\">rdf</a></small></td>"
         | 
| 24 | 
            +
              unless lc.nil?
         | 
| 25 | 
            +
                href = URI.encode_www_form("f[geographic_facet][]" => lc.strip, 
         | 
| 26 | 
            +
                          # "q" => "\"#{lc}\"", # general search for phrase
         | 
| 27 | 
            +
                          # "search_field" => "subject_terms"
         | 
| 28 | 
            +
                          )
         | 
| 29 | 
            +
                puts "<td><a href=\"http://searchworks.stanford.edu/?#{href}\">#{lc}</a></td>"
         | 
| 30 | 
            +
              else
         | 
| 31 | 
            +
                puts "<td></td>"
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
              puts "</tr>"
         | 
| 34 | 
            +
            }
         | 
| 35 | 
            +
             | 
| 36 | 
            +
            puts "</table></body></html>"
         | 
    
        data/{bin → scripts}/seed.rb
    RENAMED
    
    | 
            File without changes
         | 
| 
            File without changes
         | 
    
        data/scripts/status.csv
    ADDED
    
    | @@ -0,0 +1,253 @@ | |
| 1 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ang819jm8700&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2817774.6107047372%2C10488383.273178745%2C2974317.6446327786&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 2 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adr360kd5059&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C1565430.3392804097%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 3 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Anz101yn1505&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8609866.866042253%2C1095801.2374962866&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 4 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acy037mw3566&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4383204.949985147%2C8453323.832114212%2C4696291.017841227&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 5 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ans816wb3177&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 6 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajj504dz4325&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 7 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azk596gy7380&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 8 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awh870qw1934&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 9 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apz792fz1776&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 10 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asy319nh8520&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 11 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajc017yk9928&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 12 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqk786js7484&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 13 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ant287pg3484&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2504688.542848655%2C9392582.035682458%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 14 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqr255jh4074&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 15 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amg293bj2671&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 16 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atv536bn1915&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C3130860.6785608195%2C10644926.307106785%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 17 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awk299pr7802&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2817774.6107047372%2C10410111.756214723%2C2896046.1276687565&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 18 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axd468kv4307&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 19 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akg111bw1569&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2661231.5767766964%2C7983694.730330089%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 20 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awn662ny6315&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C3130860.6785608195%2C8140237.7642581295%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 21 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ath985qx6103&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4070118.882129065%2C8453323.832114212%2C4383204.949985147&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 22 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awf173jk1300&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 23 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asp279qq1573&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C7827151.696402048%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 24 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agq703xp5741&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 25 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axg468yp2151&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8296780.798186171%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 26 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amk488yn6694&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 27 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aww217dj0457&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-12523442.714243276%2C3757032.814272983%2C-11271098.442818949%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 28 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arq653sz4470&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 29 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acr549vg9760&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8453323.832114212%2C1565430.3392804097&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 30 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adq475sp8882&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 31 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arf389hf2983&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8922952.933898335%2C2035059.4410645328%2C9079495.967826376%2C2191602.4749925733&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 32 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atx062wm7555&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2191602.4749925733%2C9392582.035682458%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 33 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awh994sc3899&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 34 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atw875gs3784&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 35 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acj478db3413&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 36 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akz653hq8263&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C7827151.696402048%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 37 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avb525my6511&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C3443946.7464169012%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 38 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afv947zm7712&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 39 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axm850ct4822&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 40 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ary225gg9194&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8766409.899970293%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 41 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afn324dw1337&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C2504688.542848655%2C10018754.171394622%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 42 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acm007pv9601&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9705668.10353854%2C3130860.6785608195%2C10018754.171394622%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 43 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agn656fx1580&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C7827151.696402048%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 44 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apj475hf5795&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 45 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agy054hz1045&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 46 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atf374bd2484&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 47 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avn439bc7316&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C939258.2035682461%2C8453323.832114212%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 48 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ask819rr7417&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 49 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aws171yz2165&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C3130860.6785608195%2C10331840.239250703%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 50 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agc104mp1432&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8296780.798186171%2C3757032.814272983%2C8453323.832114212%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 51 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atj797mj7877&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 52 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afj181dn9241&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 53 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amy205yc3744&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 54 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asd719yh3365&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2817774.6107047372%2C7827151.696402048%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 55 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avf397xf2328&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C3443946.7464169012%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 56 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahm806gd7496&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 57 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axv475kp4644&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10175297.205322662%2C2974317.6446327786%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 58 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aym858gd0090&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 59 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajw576tv6566&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C3443946.7464169012%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 60 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ack867yf9548&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 61 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avw911qb5271&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 62 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqr374kj4827&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 63 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apr948cq9315&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2661231.5767766964%2C7983694.730330089%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 64 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abq621wf4873&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3913575.848201024%2C8296780.798186171%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 65 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajv502wg9611&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1721973.373208451%2C8218509.281222151%2C1800244.8901724713&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 66 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akj800fb6273&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 67 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayn187fq4474&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 68 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acz697hj6230&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2191602.4749925733%2C9392582.035682458%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 69 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agy928ym0717&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7983694.730330089%2C2504688.542848655%2C8140237.7642581295%2C2661231.5767766964&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 70 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acs838pw3418&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-20037508.342789244%2C5009377.085697311%2C-15028131.257091932%2C10018754.171394622&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 71 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adn744tf5427&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 72 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahk686kt8312&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C3443946.7464169012%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 73 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayh287nj4041&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2817774.6107047372%2C7827151.696402048%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 74 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afq711px7580&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C7827151.696402048%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 75 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akc829zh0226&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8453323.832114212%2C1565430.3392804097&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 76 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awg680pz0365&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 77 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akg910zr0685&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 78 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahw971df5288&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 79 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agj121yp6504&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C1565430.3392804097%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 80 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axy096gc2959&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1721973.373208451%2C8218509.281222151%2C1800244.8901724713&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 81 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abj984vk9959&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 82 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akk492wv1054&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 83 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asm349kb2475&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4383204.949985147%2C8766409.899970293%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 84 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajr127wd5810&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 85 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ans377mt1608&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 86 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afc505jr3279&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 87 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amr300ht5406&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 88 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afx159ht6191&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8844681.416934313%2C3522218.2633809214%2C8922952.933898335%2C3600489.7803449426&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 89 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adv609zt4699&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 90 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afc333gj5934&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3913575.848201024%2C8296780.798186171%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 91 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agx682yk6158&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2504688.542848655%2C9392582.035682458%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 92 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atd363vx2792&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C3757032.814272983%2C8609866.866042253%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 93 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azz943vx1492&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-20037508.342789244%2C10018754.171394622%2C-10018754.171394622%2C20037508.342789274&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 94 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axd278kj2265&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 95 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arq886ws4385&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 96 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avk450gs5746&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9705668.10353854%2C3130860.6785608195%2C10018754.171394622%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 97 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axb018tk2042&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 98 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avk120xn2474&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-20037508.342789244%2C10018754.171394622%2C-10018754.171394622%2C20037508.342789274&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 99 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ank101rn2608&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2504688.542848655%2C8140237.7642581295%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 100 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqx043ys7299&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2504688.542848655%2C8140237.7642581295%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 101 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajv517mp1102&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 102 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awg761xn1926&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 103 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahh607mc9115&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 104 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqb767ss4042&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 105 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agv800hj8141&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 106 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avj302rs8764&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C939258.2035682461%2C8453323.832114212%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 107 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afg451wp8917&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9783939.62050256%2C3209132.19552484%2C9862211.13746658%2C3287403.7124888604&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 108 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afx126wx6121&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 109 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avw319kh4558&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 110 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arn815xk8157&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9783939.62050256%2C3209132.19552484%2C9862211.13746658%2C3287403.7124888604&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 111 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axt856nw5807&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C939258.2035682461%2C8140237.7642581295%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 112 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahp571py8699&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 113 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Add308sy5843&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 114 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abp972ds5726&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 115 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aww054yb0595&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 116 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apb758zh4588&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C7827151.696402048%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 117 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arn716tb3792&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 118 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahv143bc8782&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2504688.542848655%2C9392582.035682458%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 119 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avq745jk0695&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9705668.10353854%2C3130860.6785608195%2C10018754.171394622%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 120 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awd687pm7127&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 121 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azb054hz1198&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 122 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aws732rz1499&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 123 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asj847hn4965&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 124 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afb072zt2371&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 125 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Art625ws6022&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-11271098.442818949%2C3757032.814272983%2C-10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 126 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amg745bq0193&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C2504688.542848655%2C8766409.899970293%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 127 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Anx295qt8895&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8453323.832114212%2C1565430.3392804097&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 128 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adk235ps4391&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10175297.205322662%2C2661231.5767766964%2C10331840.239250703%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 129 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqh856nv7622&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3913575.848201024%2C8218509.281222151%2C3991847.365165045&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 130 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amg228qz0447&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2191602.4749925733%2C9392582.035682458%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 131 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adb699ws4965&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C3130860.6785608195%2C8766409.899970293%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 132 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aps487qs1725&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 133 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahx246fg7614&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C2504688.542848655%2C8766409.899970293%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 134 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adz222hw0585&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 135 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asc905gj1833&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 136 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arc482tr3695&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 137 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adg688gm8422&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2661231.5767766964%2C10175297.205322662%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 138 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avx117sy3395&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C7827151.696402048%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 139 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Anz176rm8192&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 140 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akk142dt0094&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2817774.6107047372%2C7827151.696402048%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 141 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asc330vf4259&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 142 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajt589yx2875&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C7827151.696402048%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 143 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axw251zc4740&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 144 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axm711vq3840&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2817774.6107047372%2C10644926.307106785%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 145 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ask164mk2590&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2504688.542848655%2C8140237.7642581295%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 146 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axh465xp5249&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2817774.6107047372%2C10331840.239250703%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 147 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahx224xg2691&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 148 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abs343gy8803&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2504688.542848655%2C8140237.7642581295%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 149 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajs637zp2537&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 150 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayh986wy4737&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2974317.6446327786%2C10488383.273178745%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 151 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adj608xs3747&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 152 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ach050fg9165&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 153 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avm053gc6046&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 154 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqc090xq8808&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2817774.6107047372%2C10488383.273178745%2C2974317.6446327786&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 155 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afw920bc5473&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-20037508.342789244%2C10018754.171394622%2C-10018754.171394622%2C20037508.342789274&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 156 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqt530xc6901&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4383204.949985147%2C8453323.832114212%2C4696291.017841227&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 157 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avv853br8653&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-20037508.342789244%2C20037508.342789274%2C0.0%2C40075016.68559776&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 158 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avh685ty0389&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2504688.542848655%2C9392582.035682458%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 159 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adg850pt1796&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 160 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arf859ff4582&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 161 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azn452hh7431&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 162 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asj800tn3923&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 163 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agp075nv3265&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 164 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asq479mx3086&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-11271098.442818949%2C3130860.6785608195%2C-10644926.307106785%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 165 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abw938nk9584&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2661231.5767766964%2C10175297.205322662%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 166 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awg888vm0532&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 167 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aht656zm1216&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3913575.848201024%2C8296780.798186171%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 168 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ard446vf2633&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2974317.6446327786%2C10488383.273178745%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 169 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asy004yn4667&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 170 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahv811yt6433&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 171 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqd683tm8415&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 172 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apd902kb3348&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C2504688.542848655%2C8766409.899970293%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 173 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amt245vd0729&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 174 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akh957sr5281&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 175 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akd898hc1437&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C3443946.7464169012%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 176 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avh802fs4240&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 177 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asv303sh5583&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C3130860.6785608195%2C10644926.307106785%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 178 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atv060wq5179&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 179 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayn236mw3250&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8766409.899970293%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 180 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afs487vd1465&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 181 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azt093fw6519&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10175297.205322662%2C2661231.5767766964%2C10331840.239250703%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 182 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahb489vm9892&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 183 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afc583tx8435&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C1565430.3392804097%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 184 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arh343ds8931&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2817774.6107047372%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 185 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avh417yq4088&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 186 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayv382cy9393&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 187 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayq081wv8826&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 188 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajj024vd6848&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 189 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avr593vj7147&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 190 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahh772tr6441&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 191 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atk308kk6710&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 192 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayw559ts1508&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 193 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azt235pp3043&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 194 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acc479sj9839&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4383204.949985147%2C8453323.832114212%2C4696291.017841227&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 195 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abz666sy5504&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4070118.882129065%2C8453323.832114212%2C4383204.949985147&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 196 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Anz030qw3959&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 197 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acn950gr2747&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4070118.882129065%2C8453323.832114212%2C4383204.949985147&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 198 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Avf280km5364&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2661231.5767766964%2C7983694.730330089%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 199 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axg539vw8586&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 200 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajx438cj6672&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 201 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acz583ff6301&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8609866.866042253%2C1095801.2374962866&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 202 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Apz629wh2367&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8296780.798186171%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 203 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amh187yx3536&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C2504688.542848655%2C10018754.171394622%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 204 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajb371hz3868&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 205 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awy875pk9849&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 206 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azy658cr1728&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C1252344.2714243273%2C10644926.307106785%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 207 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abh152hk2665&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2974317.6446327786%2C10488383.273178745%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 208 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajq835yn7161&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 209 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axs910mg1966&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2504688.542848655%2C8140237.7642581295%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 210 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajc539qt1382&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C3130860.6785608195%2C10018754.171394622%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 211 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axk870xz7347&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 212 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atz359cc2977&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10331840.239250703%2C2817774.6107047372%2C10488383.273178745%2C2974317.6446327786&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 213 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afs696hq1818&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1252344.2714243273%2C8453323.832114212%2C1565430.3392804097&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 214 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqc091qw0570&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 215 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agm678py4390&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 216 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amd358hy5049&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10175297.205322662%2C2661231.5767766964%2C10331840.239250703%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 217 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ams808vq5598&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9079495.967826376%2C2191602.4749925733%2C9392582.035682458%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 218 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afs591bn3317&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 219 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abv313qg4079&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2661231.5767766964%2C7983694.730330089%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 220 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Anz252rq2252&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3130860.6785608195%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 221 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afd673qb9705&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 222 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Atf065zn5510&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 223 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajw462ck6560&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 224 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Arn724jx8042&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8296780.798186171%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 225 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Amy504nz9827&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C4383204.949985147%2C8140237.7642581295%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 226 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Agx345dr5305&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 227 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aks297fy1411&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-11271098.442818949%2C3757032.814272983%2C-10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 228 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adr995sd9575&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C4070118.882129065%2C8453323.832114212%2C4383204.949985147&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 229 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awy946bt6292&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8609866.866042253%2C1095801.2374962866&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 230 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Awk775mm4673&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C1878516.4071364908%2C8140237.7642581295%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 231 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqc652vr7204&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C1878516.4071364908%2C9079495.967826376%2C2191602.4749925733&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 232 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahw892mn4587&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C939258.2035682461%2C8453323.832114212%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 233 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahh674rs2091&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C8140237.7642581295%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 234 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqy162js1748&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8766409.899970293%2C2504688.542848655%2C9392582.035682458%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 235 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajf841ys4828&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1878516.4071364908%2C8766409.899970293%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 236 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axb158xf2080&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C7827151.696402048%2C3443946.7464169012&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 237 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azv925hd6723&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=-15028131.257091932%2C5009377.085697311%2C-10018754.171394622%2C10018754.171394622&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 238 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Any358rm8559&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=10018754.171394622%2C2661231.5767766964%2C10175297.205322662%2C2817774.6107047372&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 239 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Asr686bm4098&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7827151.696402048%2C2348145.508920614%2C7983694.730330089%2C2504688.542848655&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 240 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Adq603nz8402&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2504688.542848655%2C10018754.171394622%2C5009377.085697311&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 241 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axw068fw7973&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8296780.798186171%2C3913575.848201024&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 242 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Acc142xj8436&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 243 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Azv882px4750&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3443946.7464169012%2C8453323.832114212%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 244 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Akm504zq3948&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 245 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afh247yz0156&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C3130860.6785608195%2C8140237.7642581295%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 246 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ajr455pt6676&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8766409.899970293%2C1252344.2714243273&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 247 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Aqn676pg6767&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C1721973.373208451%2C8218509.281222151%2C1800244.8901724713&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 248 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ayz596nz0112&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=9392582.035682458%2C2504688.542848655%2C10018754.171394622%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 249 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahm174vw5029&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C939258.2035682461%2C8609866.866042253%2C1095801.2374962866&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 250 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Axz518gz3362&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C3443946.7464169012%2C8766409.899970293%2C3757032.814272983&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 251 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Afx872yn3710&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=7514065.628545966%2C2817774.6107047372%2C7827151.696402048%2C3130860.6785608195&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 252 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Ahs694qt6866&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8453323.832114212%2C1565430.3392804097%2C8766409.899970293%2C1878516.4071364908&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         | 
| 253 | 
            +
            http://geowebservices-restricted.stanford.edu/geoserver/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=druid%3Abw040zb5930&STYLES=&CRS=EPSG%3A900913&SRS=EPSG%3A3857&BBOX=8140237.7642581295%2C3757032.814272983%2C8453323.832114212%2C4070118.882129065&WIDTH=256&HEIGHT=256&FORMAT=image%2Fpng&TILED=true
         |